gpt4 book ai didi

node.js - npm并发错误?同时运行前端和后端时?

转载 作者:行者123 更新时间:2023-12-03 12:10:51 25 4
gpt4 key购买 nike

"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "nodemon backend/server.js",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\""
}
这是我在前端和后端文件夹(在根文件夹中)之外的 package.json 文件的脚本。当我运行命令时 npm run dev由于某种原因它不起作用。请注意 npm run servernpm run client工作正常,但问题是当我运行命令时 npm run dev其中有 concurrently其中,我不知道是什么问题,我可以做些什么来解决这个问题?这是我收到的错误消息:
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! ecommerce_shop@1.0.0 dev: `concurrently "npm run server" "npm run client"`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the ecommerce_shop@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! /home/user/.npm/_logs/2021-01-29T18_24_43_756Z-debug.log

最佳答案

通常,npm ELIFECYCLE错误意味着您的 npm 项目安装已损坏。
尝试以下内容,取自其他 SO question :

  • 运行 npm cache clean --force
  • 删除 node_modules文件夹
  • 删除 package-lock.json文件
  • npm install

  • 还要确保您使用的是 concurrently从本地安装而不是全局安装,我建议附加 npx给它:
        "dev": "npx concurrently \"npm run server\" \"npm run client\""

    关于node.js - npm并发错误?同时运行前端和后端时?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65959875/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com