npm和yarn的源代理设置

Posted icefish527

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了npm和yarn的源代理设置相关的知识,希望对你有一定的参考价值。

npm和yarn转换淘宝源和官方源

1
2
3
4
5
npm config set registry http://registry.npm.taobao.org/
npm config set registry https://registry.npmjs.org/

yarn config set registry http://registry.npm.taobao.org/
yarn config set registry https://registry.npmjs.org/

npm 设置代理

1
2
npm config set proxy http://127.0.0.1:8080
npm config set https-proxy http://127.0.0.1:8080

npm 删除代理

1
2
npm config delete proxy
npm config delete https-proxy

yarn 设置代理

1
2
yarn config set proxy http://127.0.0.1:8080
yarn config set https-proxy http://127.0.0.1:8080

yarn 删除代理

1
2
yarn config delete proxy
yarn config delete https-proxy

以上是关于npm和yarn的源代理设置的主要内容,如果未能解决你的问题,请参考以下文章

如何为 Git, npm,Yarn 设置代理

npm设置代理

npm设置和取消代理的方法

npm设置和取消代理的方法

yarn 中国镜像代理

npm、yarn设置全局安装位置和缓存位置