-
-
Save pauloabmiranda/c4cce0e21de2f32f6b705b6950c2f0dd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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