kill the process running on port windows code example

Example 1: windows kill port

netstat -ano | findstr :3001
taskkill /PID <yourid> /F

Example 2: cmd kill process on port

## check and kill used "ports"
netstat -ano | findstr :8080
taskkill /PID <yourid> /F

Example 3: kill process running on port in windows

netstat -ano | findstr :8080
taskkill /PID <yourid> /F

Example 4: kill process on port

lsof -i:3000           // Change 3000 to whatever your port is!
sudo kill 9 <PID>      // Change <PID> to the Pid number the above command returns