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
Your application is already running on that port 8080 . Use this code to kill the port and run your code again
sudo lsof -t -i tcp:8080 | xargs kill -9