Windows Kill Port
netstat -ano | findstr :3001
taskkill /PID <yourid> /F
TindyC
netstat -ano | findstr :3001
taskkill /PID <yourid> /F
npx kill-port 8080
kill $(lsof -t -i:8000)
netstat -ano | findstr :yourPortNumber
taskkill /PID typeyourPIDhere /F
netstat -ano | findstr :yourPortNumber
tskill typeyourPIDhere
Find server pid:
lsof -i tcp:5000 (the 5000 is the port number)
kill the server:
kill -9 111119 (the 111119 is the pid)