how to killl a localhost port code example
Example 1: kill local host bash
npx kill-port 8080
Example 2: close all localhost connections
netstat -ano | findstr :yourPortNumber
taskkill /PID typeyourPIDhere /F
Example 3: stop localhost server
netstat -ano | findstr :yourPortNumber
tskill typeyourPIDhere