mac terminal kill port code example
Example 1: kill process running on port mac
sudo lsof -i :3000
kill -9 <PID>
Example 2: kill port in mac
npx kill-port 8080
Example 3: kill process on port 3000 mac
kill $(lsof -ti:3000,3001,8080)
sudo lsof -i :3000
kill -9 <PID>
npx kill-port 8080
kill $(lsof -ti:3000,3001,8080)