当前位置: 代码迷 >> 综合 >> npm install出现: Unexpected end of JSON input while parsing near
  详细解决方案

npm install出现: Unexpected end of JSON input while parsing near

热度:90   发布时间:2023-12-02 06:44:58.0
把Nodejs更新到最新版,来新的项目npm install出现了这个错误。查了一下应该时因为最新版的Nodejs与npm版本不合适的问题(因为没更新Node之前是不会的)。解决办法就是把npm的版本降到4版。
清除缓存:npm cache clean --force

  npm -g i npm@4

再试试npm install 就不报错了

 

  相关解决方案