0%

nodejs包管理器配置代理和仓库

node旧版本下载地址

配置远程仓库

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

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

npm设置代理

1
2
npm config set proxy="<http_proxy>"
npm config set https-proxy="<https_proxy>"

npm删除代理

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

yarn设置代理

1
2
yarn config set proxy <http_proxy>
yarn config set https-proxy <https_proxy>

yarn删除代理

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

恰饭,恰饭