Answers for "windows how to kill localhost:3000"

0

how to terminate localhost 3000 linux

terminate localhost 3000 linux
Posted by: Guest on November-15-2021
0

windows how to kill localhost:3000

Windows:
netstat -ano | findstr :<PORT>
#see which one is has the correct port number, 
then the pid needed is the rightmost value.
taskkill /PID <PID> /F
Posted by: Guest on April-27-2022

Browse Popular Code Answers by Language