kill all localhost ports code example
Example 1: kill port ubuntu
sudo kill -9 `sudo lsof -t -i:9001`
Example 2: windows kill port
netstat -ano | findstr :3001
taskkill /PID <yourid> /F
Example 3: kill local host bash
npx kill-port 8080
Example 4: close all localhost connections
netstat -ano | findstr :yourPortNumber
taskkill /PID typeyourPIDhere /F
Example 5: stop localhost server
netstat -ano | findstr :yourPortNumber
tskill typeyourPIDhere