how to stop running port in react 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
taskkill /f /im node.exe
$ lsof -i tcp:3000
$ kill -9 PID