port already in use in node code example
Example 1: EADDRINUSE: address already in use
sudo lsof -i :<PORT>
kill -9 <PID>
Example 2: Port 3000 is already in use, but when I try to kill nothing is found
netstat -ano | findstr :3000
taskkill /PID "123" /F