我有一个npm的问题,我不能安装任何东西。以下是错误信息:

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

知道为什么吗?这是我的网络设置,似乎我没有配置任何代理。我还关闭了所有的防火墙。


当前回答

这是个老问题了。

当我试图部署到heroku时,我遇到了这个问题,对我有效的修复是更新所使用的npm版本。我有版本2.x。我更新到3.x.x

其他回答

在家里删除你的代理设置,在办公室网络上打开,这可能会让人恼火,但对我来说很管用:

npm config set proxy http://xxx.xxx.xxx.4:8080   
npm config set https-proxy http://xxx.xxx.xxx.4:8080

and

npm config rm proxy   
npm config rm https-proxy

这是个老问题了。

当我试图部署到heroku时,我遇到了这个问题,对我有效的修复是更新所使用的npm版本。我有版本2.x。我更新到3.x.x

当我试图在Oracle VirtualBox中模拟的系统上运行npm时,我也遇到了同样的问题。我通过在网络适配器属性中添加谷歌DNS地址来解决它。

网卡属性> IPv4属性>首选DNS地址:8.8.8.8。

我最近安装了Fiddler,它(我不知道)通过127.0.0.1:8866添加了一个网络代理。我进入我的Ubuntu网络设置,点击进入“网络代理”设置,并禁用它,然后一切恢复正常。

所以一般来说,检查确保你没有因为你正在做的其他事情的副作用而设置网络代理。

如果保存的不记名令牌现在无效,也可能遇到此错误。我在使用私人回购时遇到过这种情况,其中帐户被擦除和重置,令牌无效。虽然你的回购可能不需要身份验证,如果你有一个令牌从以前的登录,它将被通过,如果它是无效的连接将被关闭。

您可以通过使用新的用户名和密码再次登录来解决这个问题,或者简单地通过npm注销。