镜像源
查询当前镜像源
设置为淘宝镜像
1
| npm config set registry http://registry.npm.taobao.org/
|
下载cnpm淘宝镜像
1
| npm install -g cnpm --registry=https://registry.npm.taobao.org
|
设置默认的官方镜像
1
| npm config set registry https:
|
查看和删除设置的淘宝镜像
1
| npm config delete 前面设置名字
|
npm代理
查看当前代理
1
| npm config get https-proxy
|
设置代理
1
| npm config set proxy http:
|
1
| npm config set https-proxy http:
|
删除代理
1
| npm config set proxy null
|
1
| npm config set https-proxy null
|
或者
1
| npm config delete https-proxy
|
git查看、设置、删除代理
查看git代理
1 2
| git config --global --get http.proxy git config --global --get https.proxy
|
设置git代理
1 2
| git config --global http.proxy http: git config --global https.proxy http:
|
删除git代理
1 2
| git config --global --unset http.proxy git config --global --unset https.proxy
|
--------- 本文结束感谢您的阅读 ---------
分享
新浪微博
微信
QQ空间
QQ好友
豆瓣
有道云笔记
取消
微信支付
支付宝