windows allow connections on port where disable code example
Example 1: windows kill port
netstat -ano | findstr :3001
taskkill /PID <yourid> /F
Example 2: windows kill process on port
netstat -ano | findstr :<PORT>
taskkill /PID <PID> /F
netstat -ano | findstr :3001
taskkill /PID <yourid> /F
netstat -ano | findstr :<PORT>
taskkill /PID <PID> /F