how to check which app running on this port in mac code example
Example 1: mac terminal find process by port
sudo lsof -i tcp:3000
Example 2: check all the ports in use mac
$ npx kill-port 3000 8080 8081
Process on port 3000 killed
Process on port 8080 killed
Process on port 8081 killed