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

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


当前回答

use

npm config set registry http://registry.npmjs.org/

所以NPM请求HTTP url而不是https。

然后试试同样的NPM安装命令

其他回答

这对我来说很管用:

proxy = http://1.1.1.1:3128/
https_proxy = http://1.1.1.1:3128/
strict-ssl = false
ca = null
registry = http://registry.npmjs.org/

答案在这里:https://fak3r.com/2015/07/31/howto-use-npm-behind-a-corporate-proxy/

解决方案1:

MAC + Linux

使用sudo命令执行该命令

sudo npm install -g yo

窗户

以管理员身份运行CMD,然后再次执行该命令

解决方案2:

运行此命令,然后尝试

npm config set registry http://registry.npmjs.org/

工作时,我必须打开浏览器浏览一个网页(这可以让我通过我们的网络过滤器)。然后我重新尝试了命令,它成功地工作了。

你可能想要检查你的NPM代理设置并删除它。

npm config get proxy
npm config rm proxy
npm config rm https-proxy

人们可能会期望一个新的NodeJS+NPM安装不会配置代理。奇怪的是,我的服务器确实定义了一个代理,指向一个IP和端口3128。删除代理起到了作用。

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

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