how to terminate on local host code example
Example 1: windows kill port
netstat -ano | findstr :3001
taskkill /PID <yourid> /F
Example 2: stop task on port
npx kill-port 8080
Example 3: stop localhost server
netstat -ano | findstr :yourPortNumber
tskill typeyourPIDhere