npm全稱(chēng)Node Package Manager,是node.js的模塊依賴(lài)管理工具恶阴。由于npm的源在國(guó)外诈胜,所以國(guó)內(nèi)用戶(hù)使用起來(lái)各種不方便豹障。下面整理出了一部分國(guó)內(nèi)優(yōu)秀的npm鏡像資源,國(guó)內(nèi)用戶(hù)可以選擇使用耘斩。
國(guó)內(nèi)優(yōu)秀npm鏡像
淘寶npm鏡像
registry地址:http://registry.npm.taobao.org/
cnpmjs鏡像
搜索地址:http://cnpmjs.org/
registry地址:http://r.cnpmjs.org/
如何使用
有很多方法來(lái)配置npm的registry地址沼填,下面根據(jù)不同情境列出幾種比較常用的方法。以淘寶npm鏡像舉例:
1.臨時(shí)使用
npm --registry https://registry.npm.taobao.orginstall express
2.持久使用
npm configsetregistry https://registry.npm.taobao.org
// 配置后可通過(guò)下面方式來(lái)驗(yàn)證是否成功
npm configgetregistry
// 或
npm info express
3.通過(guò)cnpm使用
npm install -g cnpm --registry=https://registry.npm.taobao.org
// 使用
cnpm install express
注:轉(zhuǎn)至http://riny.net/2014/cnpm/