我想运行我从meanjs github克隆的MEANjs App。
当前我收到此错误
[nodemon]从node --debug server.js
开始
Error: listen EADDRINUSE :::5858
at Object.exports._errnoException (util.js:856:11)
at exports._exceptionWithHostPort (util.js:879:20)
at Agent.Server._listen2 (net.js:1231:14)
at listen (net.js:1267:10)
at Agent.Server.listen (net.js:1363:5)
at Object.start (_debug_agent.js:21:9)
at startup (node.js:72:44)
at node.js:933:3
答案 0 :(得分:2)
您已经在侦听端口5858,要么停止正在侦听该端口的进程,要么将当前应用程序更改为使用其他端口。
所以将您的server.listen()
更改为server.listen(process.env.PORT || <someOtherPort>);