Quote:
Ok, I fixed the previous error, but now I can't start the server. It gives me the IP Address, but then it throws the following error:
events.js:85
throw er; //Unhandled 'error' event
Error: listen EADDRINUSE
at exports._errnoException (util.js:746:11)
at Server._listen2 (net.js:1129:14)
at listen (net.js:1155:10)
at net.js:1253:9
at dns.js:85:18
at process._tickCallback (node.js:355:11)
at Function.Module.runMain (module.js:503:11)
at startup (node.js:129:16)
at node.js:814:3
I have no clue what is going wrong here, so any help would be appreciated!
|
I am getting the same error. Looking forward to getting some help.
Edit: I just got an email back that fixes this error. All you have to do is change
Code:
node --harmony server
to
Code:
node --harmony server 8081
This changes the port code and fixed our error.