本文主要是介绍npm error network ‘proxy‘ config is set properly. See: ‘npm help config‘,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
使用" npm install " 或者 " npm i " 初始化项目依赖失败
npm error network 'proxy' config is set properly. See: 'npm help config'
出现这样的解决方法如下:
1.查看代理
//代理
npm config get proxy
//缓存
npm config get npm config get https-proxy
//镜像源
npm config get registry
2.将代理制空和缓存制空
方法一:
//代理制空
npm config set proxy false
//缓存制空
npm cache clean --force
方法二:
//代理制空
npm config set proxy null
//缓存制空
npm config set https-proxy null
3.配置新的镜像源
注意:国内推荐淘宝源,比较快
淘宝源
npm config set registry http://registry.npm.taobao.org/官方源
npm config set registry http://registry.npmjs.org/
npm config set registry https://registry.npmjs.org/
-----------------完---------------
这篇关于npm error network ‘proxy‘ config is set properly. See: ‘npm help config‘的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!