macos kill process with specific port in use code example
Example 1: kill port in mac
npx kill-port 8080
Example 2: kill process on port 3000 mac
kill $(lsof -ti:3000,3001,8080)
npx kill-port 8080
kill $(lsof -ti:3000,3001,8080)