当前位置: 代码迷 >> 综合 >> npm 资源管理器 nrm
  详细解决方案

npm 资源管理器 nrm

热度:6   发布时间:2024-01-17 21:51:58.0

nrm

说明

npm服务器是在国外的,所以下载速度会比较慢,所以我们可以设置npm,让其下载包的时候,从国内的服务器上进行下载。

设置npm让其从国内服务器下载,需要用到一个工具,这个工具就是nrm

安装

npm install nrm -g

使用

1. 查看可用的服务器列表

nrm ls
  npm -------- https://registry.npmjs.org/yarn ------- https://registry.yarnpkg.com/cnpm ------- http://r.cnpmjs.org/
* taobao ----- https://registry.npm.taobao.org/      当前服务器镜像源nj --------- https://registry.nodejitsu.com/npmMirror -- https://skimdb.npmjs.com/registry/edunpm ----- http://registry.enpmjs.org/

2. 查看当前正在使用的服务器

nrm current

3. 切换到指定的服务器

nrm use 服务器名称

4. 测速命令

nrm test
nrm test 指定的服务器名称