不管是在学些react和vue之前都是需要安装npm的,如果你在公司用的是浏览器代理的话,那么很多问题就来了。
1、在命令行中设置代理
npm config set proxy http://111.64.11.111:8080
npm config set https-proxy http://111.64.11.111:8080
111.64.11.111:8080 就是你的公司的代理
有时可能还要使用:
npm config set strict-ssl false
clipboard.pngnpm取消使用代理命令:
npm config delete proxy
2、git
git 使用代理命令
git config --global http.proxy http://111.64.11.111:8080
git config --global https.proxy http://111.64.11.111:8080
git 取消使用代理命令
git config --global --unset http.proxy
git config --global --unset https.proxy
3、npm淘宝镜像
a、还是用npm命令的:cmd----npm config set registry https://registry.npm.taobao.org
验证:npm config get registry
如果返回https://registry.npm.taobao.org,说明镜像配置成功。
b、通过使用cnpm安装
npm install -g cnpm --registry=https://registry.npm.taobao.org
使用cnpm
cnpm install xxx
网友评论