how to stop all server running on localhost code example
Example 1: port already in use windows 10
netstat -ano | findstr :3001
taskkill /PID <yourid> /F
Example 2: kill local host bash
npx kill-port 8080
netstat -ano | findstr :3001
taskkill /PID <yourid> /F
npx kill-port 8080