kill react app port code example
Example 1: node js kill port
taskkill /f /im node.exe
Example 2: npm port already in use
$ lsof -i tcp:3000
$ kill -9 PID
Example 3: stop npm running on port 3000
netstat -ano | findstr :3000
taskkill /F /PID PID_of_port