i followed these in the process of installation of a vuetify project:
-npm install -g vue-cli -vue init vuetifyjs/webpack my-project
here is the result among all errors displayed:
-npm ERR! Unexpected end of JSON input while parsing near '...","eslint":"^1.3.1","'
Asked
Active
Viewed 443 times
-3

James A Mohler
- 11,060
- 15
- 46
- 72

Michel Tchoutang
- 59
- 1
- 1
- 3
1 Answers
0
you need to clear the npm cache.
try with
npm cache clean --force
npm install -g vue-cli
vue init vuetifyjs/webpack my-project

facuesr
- 46
- 5