使用node 經常需要切換 npm 的源。nrm 可以方便的切換 不同的源。
安裝
npm install -g nrm
命令
npm --help
usage: nrm [options] [command]
options:
-v, --version output the version number
-h, --help output usage information
commands:
ls list all the registries
current show current registry name
use change registry to registry
add [home] add one custom registry
del delete one custom registry
home [browser] open the homepage of registry with optional browser
test [registry] show response time for specific or all registries
help print this help
nrm ls 檢視所有的源
* npm ----
cnpm ---
taobao -
nj -----
rednpm -
npmmirror
edunpm -
nrm use taobao 切換源到**映象
nrm test taobao 測試**的源速度
npm ---- 347ms
taobao - 312ms
nrm add 新增源
nrm delete 刪除源
可以方便管理自己的npm 。
nrm 快速切換 NPM 源
以前我們介紹過cnpmjs.org和最近推出的 npm 兩個 npm 映象。除此之外,還有一些國外的 npm 映象。不同地區訪問不同的映象速度可能有差異,然後各個映象各自都可能有少數包暫時沒有同步,因此,有時候需要切換 npm 映象。相比每次切換時都手動指定相應引數,使用nrm 要方便的多。nrm ...
nrm切換npm源利器
npm install g nrm主要使用ls和use命令 1 nrm ls是列出來現在已經配置好的所有的原位址 nrm ls npm cnpm taobao nj rednpm npmmirror2 nrm use是切換到哪個源上 nrm use npm3 nrm add新增源 4 nrm del...
nrm 快速切換 NPM 源
我們介紹過cnpmjs.org和 npm 兩個 npm 映象。除此之外,還有一些國外的 npm 映象。不同地區訪問不同的映象速度可能有差異,因此有時候需要切換 npm 映象。相比每次切換時都手動指定相應引數,使用nrm 要方便的多。nrm 是乙個 npm 源管理器,允許你快速地在如下 npm 源間切...