npm kill-port 80 code example
Example 1: node js kill port
taskkill /f /im node.exe
Example 2: stop npm running on port 3000
netstat -ano | findstr :3000
taskkill /F /PID PID_of_port
taskkill /f /im node.exe
netstat -ano | findstr :3000
taskkill /F /PID PID_of_port