Valentin H
Valentin H

Reputation: 7448

LoopBack installation failed with error code "ECONNRESET"

I wanted follow this tutorial and one of the first steps - the installation of LoopBack failed. The type npm-debug.log tells:

41099 error argv "C:\\Program Files\\nodejs\\\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js"
 "install" "-g" "strongloop"
41100 error node v0.12.2
41101 error npm  v2.7.4
41102 error code ECONNRESET
41103 error errno ECONNRESET
41104 error syscall read
41105 error network read ECONNRESET
41105 error network This is most likely not a problem with npm itself
41105 error network and is related to network connectivity.
41105 error network In most cases you are behind a proxy or have bad network settings.
41105 error network
41105 error network If you are behind a proxy, please make sure that the
41105 error network 'proxy' config is set properly.  See: 'npm help config'
41106 verbose exit [ 1, true ]

The most confusing lines are:

This is most likely not a problem with npm itself In most cases you are behind a proxy or have bad network settings

I'm not behind a proxy, and the fact, that I'm posting the question to SO from the same machine makes me assume, that network-settings are OK. What could be wrong here?

P.S:Looking at other question concerning node.js, the hope that this one will be answered and the wish to follow node-path are disappearing.

Upvotes: 1

Views: 628

Answers (1)

Trott
Trott

Reputation: 70065

(Putting this answer that I initially wrote as a comment here because OP says it worked for them.)

If, as you say, you are not behind a proxy, etc., install a second time. There may have just been a temporary network blip on your end or anywhere in between you and the npm registry.

Upvotes: 1

Related Questions