I'm having a problem with npm, I cant install anything. Here is the error messages:
C:\Windows\system32>npm install -g yo
npm http GET https://registry.npmjs.org/yo
npm http GET https://registry.npmjs.org/yo
npm http GET https://registry.npmjs.org/yo
npm ERR! network read ECONNRESET
npm ERR! network This is most likely not a problem with npm itself
npm ERR! network and is related to network connectivity.
npm ERR! network In most cases you are behind a proxy or have bad network settin
gs.
npm ERR! network
npm ERR! network If you are behind a proxy, please make sure that the
npm ERR! network 'proxy' config is set properly. See: 'npm help config'
npm ERR! System Windows_NT 6.2.9200
npm ERR! command "C:\\Program Files\\nodejs\\\\node.exe" "C:\\Program Files\\nod
ejs\\node_modules\\npm\\bin\\npm-cli.js" "install" "-g" "yo"
npm ERR! cwd C:\Windows\system32
npm ERR! node -v v0.10.17
npm ERR! npm -v 1.3.8
npm ERR! syscall read
npm ERR! code ECONNRESET
npm ERR! errno ECONNRESET
npm ERR!
npm ERR! Additional logging details can be found in:
npm ERR! C:\Windows\system32\npm-debug.log
npm ERR! not ok code 0
Any idea why is this? Here are my network settings and it seems I dont have any proxy configured. I also disabled all the firewalls.
I had the same issue in windows while installing any package from npm. Fixed that with - ** open command prompt as administrator and run these 3 commands **/
1. npm config rm proxy
2. npm config rm https-proxy
3. npm install npm@latest -g
FOR MAC / LINUX
1. sudo npm config rm proxy
2. sudo npm config rm https-proxy
3. sudo npm install npm@latest -g
Basically this was version isuue with npm . Please check its worrking
The three thing to make npm working well inside the proxy network .
This set npm registry , By default it may take https.
Second is two set proxy in your system . If your organization use proxy or you.
You can also check if they are set or not , by
for all values.
This is an old question, but anyway.
I had this issue, when I was trying to deploy to heroku, and the fix that worked for me was to update the
npm
version that was used. I had version 2.x.x and I updated to 3.x.xI had the same problem when trying to run
npm
on system emulated in Oracle VirtualBox. I resolved it by adding Google DNS address in Network Adapter properties.Network Adapter properties > IPv4 properties > Preferred DNS address:
8.8.8.8
.I had the same issue but none of these solutions worked correctly. Finally, I have installed packages via yarn, which is npm-compatible. As per official website:
Just install the yarn and then then, run the install by using the following command, the equivalent to
npm install
in yarn:Read more at—Yarn: Migrating from npm.
I found "npm config edit" to be more useful to update the entries for https-proxy, proxy, registry
I did something like this