npm使用国内淘宝镜像(最新地址)
自npm v5起,可以通过配置使用淘宝镜像。以下是配置淘宝镜像的步骤:
- 临时使用淘宝镜像:
npm --registry https://registry.npm.taobao.org install express
- 永久配置:
npm config set registry https://registry.npm.taobao.org
通过
.npmrc
文件配置:在项目的根目录或用户的主目录中添加或编辑
.npmrc
文件,添加以下内容:
registry=https://registry.npm.taobao.org
使用
nrm
工具管理npm源:首先安装
nrm
:
npm install -g nrm
然后使用nrm
切换到淘宝镜像:
nrm use taobao
以上步骤均可将npm配置为使用淘宝镜像,从而加速npm包的安装过程。
评论已关闭