npm设置国内源(淘宝镜像源),解决npm包下载速度慢的问题

前景提要

因为众所周知的原因,我们从拉取从官方源拉取npm 依赖,经常容易出现超时,拉取失败的情况。这个时候我们就非常有必要切换使用国内源了,如淘宝源等

临时使用

npm --registry https://registry.npm.taobao.org install XXX(模块名)

全局设置

查看当前源

npm config get registry

设置为淘宝源

npm config set registry https://registry.npm.taobao.org

还原默认源

npm config set registry https://registry.npmjs.org/

使用cnpm

cnpm是一个命令,用它来代替npm

npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm install XXX(模块名)

使用nrm

nrm 是一个 npm 源管理器,允许你快速地在 npm源间切换

npm install -g nrm
nrm use taobao
nrm ls  # 查看当前可用源命令

你可能感兴趣的:(#,运维问题解决,npm,前端)