how to find and kill proccess running on port 3000 code example
Example 1: kill port
kill -9 $(sudo lsof -t -i:8080)
Example 2: kill port
netstat -aon | findstr 8080
taskkill /f /pid 77777
kill -9 $(sudo lsof -t -i:8080)
netstat -aon | findstr 8080
taskkill /f /pid 77777