how to stop a process running at a localhost port code example
Example 1: windows kill port
netstat -ano | findstr :3001
taskkill /PID /F
Example 2: kill process on port windows
netstat -ano | findstr "PORT_NUMBER"
taskkill /PID PORT_NUMBER /f