在执行 npm run serve 运行项目的时候报错:
dengzemiaodeMacBook-Pro:lianshan_vue dengzemiao$ npm run serve ...... npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! lianshan@2.0.0 serve: `vue-cli-service serve` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the lianshan@2.0.0 serve script. npm ERR! This is probably not a problem with npm. There is likely additional logging output above. npm ERR! A complete log of this run can be found in: npm ERR! /Users/dengzemiao/.npm/_logs/2021-01-14T06_10_01_084Z-debug.log复制代码
如果出现这种报错情况,需要重新安装 node_modules 文件夹中的内容 但是在安装前,要把之前的内容都清空掉。
其实大多数的主要问题是 package-lock.json 这个文件,一般使用 1、2、4 步就够了,如果不行在重新 1、2、3、4 步,因为使用了 第3步,在 $ npm install 安装会要点时间,相对较慢。
步骤如下:
1、首先删除 node_modules,可以命令行删除,也可以手动右键删除文件夹。
$ rmdir /s/q node_modules复制代码
2、删除 package-lock.json 文件
3、运行命令
$ npm cache clean --force复制代码
4、重新加载
$ npm install复制代码
解决 This is probably not a problem with npm. There is likely additional ......
转载文章标签 node_modules 文章分类 前端开发
本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章