vue项目之编译篇

当你在github上看到一个你及其喜欢的demo时-你下载下来要运行时:

1.npm install

npm ERR! Unexpected end of JSON input while parsing near '...fd2a1403925057623f","'

是不是大多数会遇到这种情况

解决方案一:

第一步:

npm   cache  clean--force

第二步:

npm install --registry=https://registry.npm.taobao.org

解决方案二

npm cache clean --force

npm set registry https://registry.npmjs.org/

原文摘自:https://www.cnblogs.com/GeniusLyzh/p/9773440.html

你可能感兴趣的:(vue项目之编译篇)