简介: Plusmancn 是一个基于国内的资源镜像搭建的 npm 镜像,可以加速国内 npm 包的下载。本篇文章将基于该 npm 包的使用进行详细介绍。
安装
使用命令行工具全局安装 plusmancn:
npm install -g cnpm --registry=https://registry.npm.taobao.org
使用
使用该镜像的方式有两种:
1. 临时使用
使用命令时手动添加镜像地址:
npm install <package_name> --registry=https://registry.npm.taobao.org
2. 永久使用
设置 npm 配置,使 npm 在每次安装时都默认使用该镜像:
npm config set registry https://registry.npm.taobao.org
此时安装 npm 包可直接在命令行输入:
npm install <package_name>
示例:
1. 使用原地址下载
npm install webpack
2. 使用 plusmancn 下载
npm install webpack --registry=https://registry.npm.taobao.org
3. 设置使用 plusmancn 镜像
npm config set registry https://registry.npm.taobao.org
npm install webpack
结语
当我们在执行 npm install 时,可以通过使用该镜像,解决网络延迟的问题,让我们可以更快地安装 npm 包,提高开发效率。
来源:JavaScript中文网 ,转载请注明来源 https://www.javascriptcn.com/post/600553d781e8991b448d1226