其他分享
首页 > 其他分享> > [Bug0032] npm构建报错 npm ERR! code ELIFECYCLE

[Bug0032] npm构建报错 npm ERR! code ELIFECYCLE

作者:互联网

1、问题

#FailureMessage Object: 000000D8824FD510npm ERR! code ELIFECYCLE

npm ERR! errno xxxxxxxxx
npm ERR! admiXXXX
npm ERR! Exit status xxxxxxxxx
npm ERR!
npm ERR! Failed at the admin-vue@1.0.0 dev 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!     xxxxx\npm-cache\_logs\2021-02-21T12_41_19_652Z-debug.log

2、场景

新拉去一个项目,没有查看要求环境,build 前端代码时报错

3、原因

版本不对(原来使用的是14.x)

4、解决方案

把 node 版本调整为 v12.13.0 解决(nvm管理nodejs版本)

其他查到的个人感觉还挺可靠的解决方案删除依赖(未尝试此方案就解决了问题)

npm cache clean --force
rm -rf node_modules
rm -rf package-lock.json

重新安装npm install

然后再执行。

标签:npm,code,ERR,xxxxxxxxx,rf,报错,rm
来源: https://www.cnblogs.com/Code-Rain/p/16502503.html