npm ERR! Unexpected end of JSON input while parsing near ‘...QgBRc6yfE9kLLmu/z0Hq+‘

   昨天用 vocode 在项目下执行 npm install 的时候报错

npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})

npm ERR! Unexpected end of JSON input while parsing near '...QgBRc6yfE9kLLmu/z0Hq+'
npm ERR! A complete log of this run can be found in:

 执行  npm run dev 时,vue-cli-service' 不是内部或外部命令,也不是可运行的程序或批处理文件 。

 由于前端项目接触的太少,不知道是不是工具安装的有问题,网上找了一下说是缓存问题,执行命令

npm cache clean --force

 但是我这不管用,缓存文件还在,然后手动去删除缓存目录文件夹

C:\Users\你的用户名\AppData\Roaming\npm-cache

 直接删除 npm-cache 这个文件夹,然后执行下面两个命令,项目正常启动

npm install
npm run dev

 ( 仅做记录学习前端遇到的问题 )

你可能感兴趣的:(vue)