現(xiàn)在node已經(jīng)越來越流行了璧诵,通過node的插件已經(jīng)越來越多了,如果不行安裝cnpm 又想使用淘寶服務(wù)器下載插件驮吱,那么你可以嘗試通過下面的命令行語句來下載
1.npm install webpack-cli --registry=https://registry.npm.taobao.org
如果你覺得每次都需要添加淘寶的網(wǎng)址麻煩的話雕憔,我們可以把他加入配置文件中
2.npm config set registry https://registry.npm.taobao.org
配置完成之后我們查看配置項
3.npm config list
還原操作:
1.原npm地址
npm config set registry http://registry.npmjs.org
2.設(shè)置國內(nèi)鏡像
a.通過config命令
npm config set registry https://registry.npm.taobao.org npm info underscore (如果上面配置正確這個命令會有字符串response)
b.命令行指定
npm --registry https://registry.npm.taobao.org info underscore
c.編輯 ~/.npmrc 加入下面內(nèi)容
registry = https://registry.npm.taobao.org
3.使用nrm管理registry地址
a.下載nrm
npm install -g nrm
b.添加registry地址
nrm add npm http://registry.npmjs.org
nrm add taobao https://registry.npm.taobao.org
c.切換npm registry地址
nrm use taobao
nrm use npm