npm设置代理
2014年1月13日
在代理环境下 使用npm安装文件需要设置代理,具体方法:
#设置http
npm config set proxy http://xxx.com:8080
#设置https
npm config set https-proxy https://xxx.com:8080
#如果没有https代理 改变npm仓库的地址 registry
npm config set registry “http://registry.npmjs.org/"
在代理环境下 使用npm安装文件需要设置代理,具体方法:
#设置http
npm config set proxy http://xxx.com:8080
#设置https
npm config set https-proxy https://xxx.com:8080
#如果没有https代理 改变npm仓库的地址 registry
npm config set registry “http://registry.npmjs.org/"