Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialCécile R.-K.
6,616 PointsAnother process already listening at this address
Hello all!
Running into this issue when you type node-debug src/app.js
?
Cannot start the server at 127.0.0.1:8080. Error: listen EADDRINUSE 127.0.0.1:8080.
There is another process already listening at this address.
Here is what worked for me instead:
node-debug -p 5859 src/app.js
Hope this helps!
1 Answer
Steven Parker
231,269 PointsYou might want to identify which process is currently using that port, and if it's not something you intended to keep running, you may want to stop it.
One possibility is It could be an old instance of node still running in the background.
Cécile R.-K.
6,616 PointsCécile R.-K.
6,616 PointsThanks :) I have proxy using this port.