這兩天執行 npm install 時會報錯誤:vue
npm ERR! Unexpected end of JSON input while parsing near
這個錯誤的解決方法有如下幾種:webpack
1.刪掉package.lock.jsongit
2.清除cachegithub
npm cache clean --force
3.進入下面這個文件夾清除cache
路徑:C:/Users/PC/AppData/Roaming/npm-cache
執行:web
npm cache clean --force
4.不要用淘寶鏡像。npm
npm set registry https://registry.npmjs.org/
其實我也沒搞懂究竟是什麼問題形成的,有大神給解釋一下?json
參考資料:https://github.com/vuejs-temp...code