Error message reads Node / Express: EADDRINUSE...
Damn, this shouldn't be happening.
List all processes running on port 3000 like this
sudo lsof -i :3000
Find the PID. Kill the PID.
kill -9 {PID}
That's all.
Answer found here
Error message reads Node / Express: EADDRINUSE...
Damn, this shouldn't be happening.
List all processes running on port 3000 like this
sudo lsof -i :3000
Find the PID. Kill the PID.
kill -9 {PID}
That's all.
Answer found here