how to kill port in terminal code example
Example 1: kill process on port windows
netstat -ano | findstr "PORT_NUMBER"
taskkill /PID PORT_NUMBER /f
Example 2: kill the port in mac
sudo lsof -i tcp:3000
netstat -ano | findstr "PORT_NUMBER"
taskkill /PID PORT_NUMBER /f
sudo lsof -i tcp:3000