1. 程式人生 > >vue cli3 建立專案時出錯

vue cli3 建立專案時出錯

報錯如下

Vue CLI v3.0.4
  Creating project in C:\Users\25677\Desktop\study\vuedemo\vuex-demo.
  Installing CLI plugins. This might take a while...

npm ERR! Unexpected end of JSON input while parsing near '...t":false,"tarball":"h'

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\25677\AppData\Roaming\npm-cache\_logs\2018-10-08T04_57_19_539Z-debug.log
 ERROR  command failed: npm install --loglevel error --registry=https://registry.npm.taobao.org --disturl=https://npm.taobao.org/dist
PS C:\Users\25677\Desktop\study\vuedemo>

第一次我是降低了npm版本,解決了問題,第二次又遇到了這個問題我是清空了npm快取解決了;

由於我沒用2.多的腳手架了,現在直接來下面的方法

npm uninstall -g vue
npm uninstall -g vue-cli
npm uninstall -g @vue/cli
npm cache clean --force
npm install -g @vue/cli

原來和node,npm沒什麼關係。那我就直接將vue的東西全解除安裝了,然後清空npm快取,在下載需要的進行就好了。

以上步驟後正常執行。

這個連線是很多遇到這個問題的人在上面提問和解決方法的。