npm 无法安装任何包解决办法


解决办法:

用管理员打开 cmd  输入

npm 无法安装任何包解决办法_第1张图片

1、执行:

npm config get proxy
npm config get https-proxy


如果返回值不为null,继续执行:
(这一步很重要,一定要保证两个命令的返回值都为null,话说回来,应该出现这个错误这两个返回值有不为null的)

npm config set proxy null
npm config set https-proxy null


2、执行:

npm config set registry https://registry.npm.taobao.org

3然后你就可以愉快的安装cnpm了

npm install -g cnpm --registry=https://registry.npm.taobao.org

-------------------------------------------------------------

4 查看配置 

npm help config

npm config list


#编辑配置
npm config edit

npm 无法安装任何包解决办法_第2张图片

 这是淘宝是对的,不对就修改成淘宝  

你可能感兴趣的:(npm,前端,node.js)