Skip to content

Instantly share code, notes, and snippets.

@pauloabmiranda
Created September 26, 2017 10:12
Show Gist options
  • Save pauloabmiranda/c4cce0e21de2f32f6b705b6950c2f0dd to your computer and use it in GitHub Desktop.
Save pauloabmiranda/c4cce0e21de2f32f6b705b6950c2f0dd to your computer and use it in GitHub Desktop.
// 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment