0%

npm的镜像源以及代理的查看和配置

镜像源

查询当前镜像源

1
npm get registry

设置为淘宝镜像

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://registry.npmjs.org/

查看和删除设置的淘宝镜像

1
npm config get 前面设置的名字
1
npm config delete 前面设置名字

npm代理

查看当前代理

1
npm config get proxy
1
npm config get https-proxy

设置代理

1
npm config set proxy http://server:port
1
npm config set https-proxy http://server:port

删除代理

1
npm config set proxy null
1
npm config set https-proxy null

或者

1
npm config delete proxy
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://IP:Port
git config --global https.proxy http://IP:Port

删除git代理

1
2
git config --global --unset http.proxy
git config --global --unset https.proxy
--------- 本文结束感谢您的阅读 ---------
分享