pauloabmiranda
9/11/2017 - 10:31 AM

Kill node server on port

// on windows
// kill all instances of node
taskkill /f /im node.exe

//////////////////////////

// list all the processes on port 3000
netstat -ano | find "LISTENING" | find "3000"

// kill process 14828
taskkill /f /pid 14828