Node.js 应用程序无法在 heroku 上启动

Posted

技术标签:

【中文标题】Node.js 应用程序无法在 heroku 上启动【英文标题】:Node.js application doesnt start up on heroku 【发布时间】:2021-12-31 00:54:14 【问题描述】:

我试图了解为什么我的 heroku 应用程序不再工作了。它以前可以工作,但突然开始在其日志中显示错误:

2021-11-20T17:43:09.447233+00:00 heroku[Worker.1]:进程以状态 1 退出 2021-11-20T17:43:09.592799+00:00 heroku[Worker.1]:状态从最高变为崩溃 2021-11-20T17:55:53.598178+00:00 heroku[Worker.1]:状态从崩溃变为启动 2021-11-20T17:55:55.576714+00:00 heroku[Worker.1]:使用命令node main.js启动进程 2021-11-20T17:55:56.282257+00:00 heroku[Worker.1]:状态从开始变为向上 2021-11-20T17:55:56.614501+00:00 heroku[Worker.1]:进程以状态 1 退出

而且它根本不会启动应用程序。为什么它不起作用?

我偶尔也会收到此错误:

2021-11-20T20:25:09.785827+00:00 app[Worker.1]: /app/node_modules/discord.js/src/rest/APIRequest.js:33 2021-11-20T20:25:09.785842+00:00 app[Worker.1]: agent ??= new https.Agent( ...this.client.options.http.agent, keepAlive: true ); 2021-11-20T20:25:09.785842+00:00 应用程序[Worker.1]:^^^ 2021-11-20T20:25:09.785842+00:00 应用程序[Worker.1]: 2021-11-20T20:25:09.785843+00:00 app[Worker.1]: SyntaxError: Unexpected token '??=' 2021-11-20T20:25:09.785843+00:00 app[Worker.1]: 在 wrapSafe (internal/modules/cjs/loader.js:1001:16) 2021-11-20T20:25:09.785843+00:00 app[Worker.1]: 在 Module._compile (internal/modules/cjs/loader.js:1049:27) 2021-11-20T20:25:09.785843+00:00 app[Worker.1]: 在 Object.Module._extensions..js (internal/modules/cjs/loader.js:1114:10) 2021-11-20T20:25:09.785844+00:00 app[Worker.1]: 在 Module.load (internal/modules/cjs/loader.js:950:32) 2021-11-20T20:25:09.785844+00:00 app[Worker.1]: 在 Function.Module._load (internal/modules/cjs/loader.js:790:12) 2021-11-20T20:25:09.785844+00:00 app[Worker.1]: 在 Module.require (internal/modules/cjs/loader.js:974:19) 2021-11-20T20:25:09.785845+00:00 应用程序 [Worker.1]:在需要时 (internal/modules/cjs/helpers.js:93:18) 2021-11-20T20:25:09.785845+00:00 app[Worker.1]:在对象。 (/app/node_modules/discord.js/src/rest/RESTManager.js:4:20) 2021-11-20T20:25:09.785845+00:00 app[Worker.1]: 在 Module._compile (internal/modules/cjs/loader.js:1085:14) 2021-11-20T20:25:09.785845+00:00 app[Worker.1]: 在 Object.Module._extensions..js (internal/modules/cjs/l

编辑:我知道发送代码很重要,但我真的不知道什么代码与错误相关,而且这个项目中有很多代码。

【问题讨论】:

请提供minimal reproducible example。 请提供足够的代码,以便其他人更好地理解或重现问题。 【参考方案1】:

您的程序有错误。尝试在本地运行您的程序,并查找错误。如果在本地运行良好,请尝试检查 Heroku 配置。

【讨论】:

该程序在本地运行。我应该在 Heroku 配置中寻找什么? @GFTK 您是否为您的工作人员正确设置了 Procfile? @Viriato 我相信我会。 Worker:节点 main.js

以上是关于Node.js 应用程序无法在 heroku 上启动的主要内容,如果未能解决你的问题,请参考以下文章

Node.js 应用程序无法部署到 Heroku

为啥 Heroku 无法检测到 Node.js buildpack?

Heroku 部署 - “推送被拒绝,无法编译 Node.js 应用程序”

应用程序中发生错误,无法提供您的页面将 Node.Js REST 部署到 heroku

heroku push 被拒绝,无法编译 Node.js 应用程序

Node.js MEAN Stack App 在本地工作,但无法部署到 Heroku