npm 设置代理
无密码的:
1 | npm config set proxy http://server:port |
有密码的
1 | npm config set proxy http://username:password@server:port |
1 | 删除代理 |
yarn 设置代理
设置代理 :
1 | yarn config set proxy <http_proxy> |
删除代理 :
1 | yarn config delete proxy |
registry 设置
1 | npm config set registry https://registry.npm.taobao.org/ |
git 设置代理
设置代理:
1 | git config --global http.proxy http://127.0.0.1:xxxx |
删除代理:
1 | git config --global --unset http.proxy |