npm
全稱Node Package Manager
,是node.js的模塊依賴管理工具。因爲npm
的源在國外,因此國內用戶使用起來各類不方便。下面整理出了一部分國內優秀的npm
鏡像資源,國內用戶能夠選擇使用。node
有不少方法來配置npm
的registry地址,下面根據不一樣情境列出幾種比較經常使用的方法。以淘寶npm
鏡像舉例:express
npm --registry https://registry.npm.taobao.org install express
npm config set registry https://registry.npm.taobao.org // 配置後可經過下面方式來驗證是否成功 npm config get registry // 或 npm info express
cnpm
使用npm install -g cnpm --registry=https://registry.npm.taobao.org // 使用 cnpm install expresstall express