How to fix Error: listen EADDRINUSE while using NodeJS?

What really helped for me was:

killall -9 node

But this will kill a system process.

With

ps ax

you can check if it worked.

Leave a Comment