79135326

Date: 2024-10-28 22:56:17
Score: 0.5
Natty:
Report link

The error message is telling you the address your server is trying to listen to is already in use EADDRINUSE: address already in use :::5000, probably you have another instance from a previous test running?

To test, try changing the port your server is listening to. Modify the line:

var server = app.listen(5000, function () {

to

var server = app.listen(5001, function () {
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: KnoVz