remove application by port windows code example
Example 1: windows kill port
netstat -ano | findstr :3001
taskkill /PID <yourid> /F
Example 2: remove port binding windows
netstat -a -n -o | findstr :80
TaskKill /PID pidnum
Example 3: stop task on port
npx kill-port 8080