If I run a server with the port 80, and I try to use xmlHTTPrequest i get this error: Error: listen EADDRINUSE
Error: listen EADDRINUSE
Why is it problem for nodejs, if I want t
EADDRINUSE means port of your nodejs app is already in use.
lsof -i tcp:3000
kill -9 processId