node.js 模块和其下载资源的镜像设置的方法
以前安装 electron 时总是失败,然后就在淘宝镜像上下载好相应版本的文件放到用户目录来解决问题。
后来研究发现 npm 不仅可以设置 node.js 模块仓库的代理, 同样可以设置像 electron、phantomjs、 node-sass 等模块的镜像代理
一、设置淘宝镜像 (共三种方法)
1.环境变量
Unix:
# electron export ELECTRON_MIRROR=https://npm.taobao.org/mirrors/electron/ # phantomjs export PHANTOMJS_CDNURL=https://npm.taobao.org/mirrors/phantomjs/ # node-sass export SASS_BINARY_SITE=https://npm.taobao.org/mirrors/node-sass/
Windows:
# electron set ELECTRON_MIRROR=https://npm.taobao.org/mirrors/electron/ # phantomjs set PHANTOMJS_CDNURL=https://npm.taobao.org/mirrors/phantomjs/ # node-sass set SASS_BINARY_SITE=https://npm.taobao.org/mirrors/node-sass/
2.npm 执行参数
# electron npm install electron --electron-mirror=https://npm.taobao.org/mirrors/electron/ # phantomjs npm install phantomjs --phantomjs_cdnurl=https://npm.taobao.org/mirrors/phantomjs/ # node-sass npm install node-sass --sass-binary-site=https://npm.taobao.org/mirrors/node-sass/
3.使用本地(项目根目录)或全局(用户目录).npmrc 配置
registry=https://registry.npm.taobao.org electron_mirror=https://npm.taobao.org/mirrors/electron/ sass_binary_site=https://npm.taobao.org/mirrors/node-sass/ phantomjs_cdnurl=https://npm.taobao.org/mirrors/phantomjs/
二、使用代理
除了使用代理来解决,更暴力直接的方法就是使用梯子了。
确保你要安装的模块仓库地址在代理PAC列表中或直接使用全局代理。npm 好像只支持 HTTP 代理
# 设置代理 npm config set proxy http://127.0.0.1:1085 # 安装模块 npm i --save-dev electron # 删除代理 npm config delete proxy
总结
相关推荐
sunzhihaofuture 2020-06-14
某先生 2020-06-13
hongxiangping 2020-05-07
tiankele0 2020-04-15
songerxing 2020-03-23
wangrui0 2020-02-17
amei0 2020-01-23
Pinkr 2013-05-13
编程我在行 2020-01-18
sunzhihaofuture 2020-01-09
zhaoyingm 2019-12-12
amei0 2019-11-08
爱好HtmlCssJs 2019-11-01
ruler 2015-04-13
ncisoft 2015-06-04
浅陌游离 2016-11-15
凌云客 2019-07-16
lindiwo 2016-10-19