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

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


当前回答

它为我解决了使用这段代码: NPM安装-g纱线

Yarn全局添加create-react-app

其他回答

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

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

use

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

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

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

我已经尝试了几乎所有张贴在这里和其他页面的方法,但都不工作。以下是我按顺序执行的命令,我鼓励你尝试一下,因为它对许多人都有效(但不是我):

NPM配置rm代理 NPM配置rm http -proxy NPM设置http -proxy https://username:password@proxy.company.com:6050 NPM配置代理http://username:password@proxy.company.com:6050 NPM配置设置注册表http://registry.npmjs.org/

然后尝试安装npm install -g express包,但是失败了。

然而,当我试图运行npm install npm@latest -g时,它奇迹般地执行并安装良好! 然后再次运行npm install -g express也完全正常。

TL;DR:更新npm到最新版本解决了这个问题(目前是6.0.1)

我不想切换到注册表的http,对我有用的是从最新的Node版本降级到LTS版本(目前是6.x)。

解决方案1:

MAC + Linux

使用sudo命令执行该命令

sudo npm install -g yo

窗户

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

解决方案2:

运行此命令,然后尝试

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