Back to Node.js Errors
Node.js Error

EADDRINUSE

Address already in use

What does this error mean?

The port number is already being used by another process.

How to fix EADDRINUSE?

Find and kill process using the port: 'lsof -i :<port>' or 'netstat -ano | findstr :<port>'. Use different port number. Stop the conflicting application.