npm使用国内镜像源
·
简介
npm install 有时候可能失败,可能是国外服务器的原因,所以我们常常需要设置成国内源头
Mac 中 brew 安装 node 时候会自动安装上 npm,npm 默认的镜像源是:http://registry.npmjs.org
国内镜像
cnpm镜像地址:http://registry.cnpmjs.org
淘宝镜像地址:https://registry.npm.taobao.org
等等镜像源头(以上可能失效)
修改镜像源
方式一
先安装 cnpm
npm install -g cnpm
然后以后使用 cnpm 来 install 安装即可
方式二
可以先查看当前源
npm config get registry
npm 设置成国内镜像源
npm config set registry https://registry.npmmirror.com/
更多推荐
已为社区贡献6条内容
所有评论(0)