AJTECH
AJTECH

Reputation: 387

Gruntjs + nodemon

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?? enter image description here

Upvotes: 0

Views: 48

Answers (1)

StevenR
StevenR

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

Related Questions