In Windows what can look for port 8080 and try to kill the process it is using through a .BAT file?
Open command prompt and run the following commands
C:Usersusername>netstat -o -n -a | findstr 0.0:3000 TCP 0.0.0.0:3000 0.0.0.0:0 LISTENING 3116 C:Usersusername>taskkill /F /PID 3116
, here 3116 is the process ID
2.1m questions
2.1m answers
60 comments
57.0k users