windows find process using port and kill code example
Example 1: port already in use windows 10
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