我有一个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

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


当前回答

就我而言,换wifi对我来说很有用。我通常在客厅里工作。但是我几天前刚换了房间。wifi没有到达二楼,所以我们使用了wifi Extender。

然后我遇到了这个问题。我试着切换回客厅的wifi,执行同样的命令也没有问题。

其他回答

我也遇到了同样的问题,但这些解决方案都不能正确工作。最后,我通过yarn安装了包,这是npm兼容的。根据官方网站:

对大多数用户来说,从npm迁移应该是一个相当简单的过程。 纱线可以消耗相同的包装。Json格式为npm,并可以安装 来自NPM注册表的任何包。

只需要安装yarn,然后使用下面的命令运行install,相当于npm install in yarn:

yarn install

阅读更多- Yarn:从npm迁移。

我们公司的防火墙将停止安装节点,因此连接到个人网络并安装,这对我来说是有效的。

如果你使用的是Windows,你应该继续执行高级系统设置来检查那里声明的env变量,你应该注意到代理配置可能位于环境变量中,如下图所示:

因此,如果你的代理服务器不可用或阻塞了来自npm的流量,你可能会注意到前面提到的错误。也许你根本不需要任何代理,在这种情况下,只需要删除HTTP_PROXY env变量。

我已经在我的Windows和npm设置中关闭了所有的代理配置,然而,npm在下载资源时仍然会得到超时和连接错误,然后我发现仍然有一个代理配置留在env变量上,这导致了所有的麻烦。

以防万一……只要再试一次,我就成功了。可能只是暂时的连接问题。

这是个老问题了。

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