天空闲话 发表于 2024-8-23 10:30:13

npm error network ‘proxy‘ config is set properly. See: ‘npm help co

利用" npm install " 大概 "  npm i " 初始化项目依赖失败
npm error network 'proxy' config is set properly.See: 'npm help config' https://i-blog.csdnimg.cn/direct/721199cf2dbd4396aebe64402952c03a.png
出现这样的办理方法如下:
 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/
-----------------完--------------- 


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: npm error network ‘proxy‘ config is set properly. See: ‘npm help co