vue初始化專案失敗
阿新 • • 發佈:2021-06-30
vue-cli • Failed to download repo vuejs-templates/webpack: unable to verifythe first certificate
第一步:https://github.com/vuejs-templates/webpack 下載webpack檔案
第二部:到C盤找到.vue-templates檔案,找不到?在命令工具C:\Users\Administrator>md .vue-templates;、
第三部:開啟剛剛新建的.vue-templates檔案,把第一步下載的webpack檔案解壓(注意解壓以後的檔名是webpack-develop,把-develop刪掉,檔名只能叫webpack)放到.vue-templates檔案裡邊
第四部:到你要建立專案的資料夾shift+右鍵選擇“在此處開啟命令視窗”
第五步:輸入vue init webpack mysite --offline回車回車,終於不在報錯了 啦啦啦~~~~
第一個部落格就是在學習VUE的時間裡 初始化專案失敗 和別人學習的結果
1 問題
在使用npm install或cnpm install的時候,出現以下報錯 Error: unable to verify the first certificate 2 原因
2017年2月27日,npm不再支援自簽名證書。
npm install走的是https協議,需要通過數字證書來保證的
① 取消ssl驗證:npm config set strict-ssl false
如果還沒成功,則將npm源更換為國內映象:
npm config set registry http://registry.npm.taobao.org/
npm config set registry http://registry.cnpmjs.org/
② 升級:npm install npm -g --ca=null
或者 npm config set ca=""
推薦使用方法1