Reputation: 387
I keep getting the error show in the image when running nodemon with watch & node inspector with the sails.js framework
Anyone come across this before??
Upvotes: 0
Views: 48
Reputation: 722
EADDRINUSE means the port the server try to bind is currently in use.
In this case, your port 1337 and 3000 have been occupied by other server already. You should change your configuration or kill the processes that occupy the ports.
Upvotes: 2