報這個問題是由於npm代理的問題,解決辦法:
1. 能夠臨時使用淘寶鏡像
npm --registry https://registry.npm.taobao.org install 你想安裝的npm包名稱
解析:registry是npm 模塊倉庫提供了一個查詢服務,叫作 registry 。以 npmjs.org 爲例,它的查詢服務網址是
https://registry.npmjs.org/ 。經過 https://registry.npm.taobao.org這個服務網址 進行npm包的安裝,沒有代理問題,可正常安裝
2. 安裝淘寶鏡像
npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm install 你想安裝的npm包名稱
而後就能夠像使用npm同樣使用cnpm進行安裝了