ive just started working on my first node JS application, trying to install express via npm, I got the following error:
Error: connect ECONNREFUSED 127.0.0.1:8080 at Object.exports._errnoException (util.js:870:11) at exports._exceptionWithHostPort (util.js:893:20) at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1057:14) { [Error: connect ECONNREFUSED 127.0.0.1:8080] code: 'ECONNREFUSED', errno: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 8080 }
and with npm-debug:
36 verbose stack Error: connect ECONNREFUSED 127.0.0.1:8080 36 verbose stack at Object.exports._errnoException (util.js:870:11) 36 verbose stack at exports._exceptionWithHostPort (util.js:893:20) 36 verbose stack at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1057:14) 37 verbose cwd C:\APS\NodeJS 38 error Windows_NT 6.1.7601 39 error argv "C:\\APS\\NodeJS\\node.exe" "C:\\APS\\NodeJS\\node_modules\\npm\\bin\\npm-cli.js" "install" "express" 40 error node v4.4.0 41 error npm v2.14.20 42 error code ECONNREFUSED 43 error errno ECONNREFUSED 44 error syscall connect 45 error Error: connect ECONNREFUSED 127.0.0.1:8080 45 error at Object.exports._errnoException (util.js:870:11) 45 error at exports._exceptionWithHostPort (util.js:893:20) 45 error at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1057:14) 45 error { [Error: connect ECONNREFUSED 127.0.0.1:8080] 45 error code: 'ECONNREFUSED', 45 error errno: 'ECONNREFUSED', 45 error syscall: 'connect', 45 error address: '127.0.0.1', 45 error port: 8080 } 46 error If you are behind a proxy, please make sure that the 46 error 'proxy' config is set properly. See: 'npm help config' 47 verbose exit [ 1, true ]
I look at the tat problem and cannot find anything if someone, having encountered such a problem, can help him describe it poorly. Tnx
source share