port already in use windows kill code example
Example 1: windows kill port
netstat -ano | findstr :3001
taskkill /PID <yourid> /F
Example 2: kill process running on port in windows
netstat -ano | findstr :8080
taskkill /PID <yourid> /F
Example 3: kill service by port number on windows
taskkill /F /PID PORT_NUMBER