close application on a certain port code example
Example 1: kill a port
kill $(lsof -ti:3000)
Example 2: kill port
netstat -aon | findstr 8080
taskkill /f /pid 77777
kill $(lsof -ti:3000)
netstat -aon | findstr 8080
taskkill /f /pid 77777