Discord bot 不是从 heroku 开始的
Posted
技术标签:
【中文标题】Discord bot 不是从 heroku 开始的【英文标题】:Discord bot not starting with heroku 【发布时间】:2021-10-12 16:53:18 【问题描述】:所以我已经在 heroku 上托管了我的机器人一段时间了,它工作得很好,但我最近又临时搬到了自我托管,因为我必须更新到 discord.js v13,但现在我已经完成了有了这些更改,我尝试在 heroku 上重新托管机器人,但它给出了这个错误:
(node:4) UnhandledPromiseRejectionWarning: ReferenceError: AbortController is not defined
2021-08-08T20:30:17.770796+00:00 app[Worker.1]: at RequestHandler.execute (/app/node_modules/discord.js/src/rest/RequestHandler.js:172:15)
2021-08-08T20:30:17.770796+00:00 app[Worker.1]: at RequestHandler.execute (/app/node_modules/discord.js/src/rest/RequestHandler.js:176:19)
2021-08-08T20:30:17.770797+00:00 app[Worker.1]: at RequestHandler.push (/app/node_modules/discord.js/src/rest/RequestHandler.js:50:25)
2021-08-08T20:30:17.770797+00:00 app[Worker.1]: at processTicksAndRejections (internal/process/task_queues.js:95:5)
2021-08-08T20:30:17.770798+00:00 app[Worker.1]: at async WebSocketManager.connect (/app/node_modules/discord.js/src/client/websocket/WebSocketManager.js:128:9)
2021-08-08T20:30:17.770798+00:00 app[Worker.1]: at async Client.login (/app/node_modules/discord.js/src/client/Client.js:245:7)
2021-08-08T20:30:17.770799+00:00 app[Worker.1]: (Use `node --trace-warnings ...` to show where the warning was created)
2021-08-08T20:30:17.770962+00:00 app[Worker.1]: (node:4) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 2)
2021-08-08T20:30:17.771045+00:00 app[Worker.1]: (node:4) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
我不明白发生了什么,我认为唯一可能导致这种情况的变化是我创建了一个事件处理程序,我现在将事件放在他们自己的文件中,如命令,但我不确定是否这样与此错误有关,我真的希望您能提供帮助。
【问题讨论】:
这能回答你的问题吗? Why am I getting a ReferenceError: AbortController is not defined in Discord.js v13? 这个问题正是我的问题,但它建议更新到节点 16.6,我已经这样做了,不幸的是我现在无法检查,但我很确定我应该有正确的节点版本 您可以通过在终端中运行node -v
来检查您的节点版本。
【参考方案1】:
我最近也遇到了这个错误。
Discord.js 版本 13 在节点 16.6.1 上运行,但是默认 Heroku 节点版本是 14.x。 p>
这意味着我们必须指定我们希望 Heroku 构建我们的应用程序的版本。
在 package.json 中添加
"engines":
"node": "16.x",
"npm": "7.x"
参考:https://devcenter.heroku.com/articles/nodejs-support#specifying-a-node-js-version
这向 buildpack 指定我们需要使用最新版本的 node 16 和 npm 7。
但是,在我添加之后,我遇到了一个部署错误,并提到了这个stack overflow question
那里的答案是在你的根文件夹中添加一个空的“.npmignore”文件,所以我这样做了。但是,将所有内容推送到 Github 后,我仍然收到相同的部署错误。
这是说临时目录中的文件“node.exe”丢失。 经过反复试验,我决定提交并将“node_modules/”目录推送到 Github(这需要一些时间),因为(抱歉我没有复制构建日志)文件“node.exe”驻留在“node_modules/”目录,然后重新部署我的应用程序,它工作了!
总而言之,这是一次往返之旅,因为我不知道“.npmignore”文件是否有任何作用(如果我错了,请发表评论!)。
回顾一下我为修复我的应用程序所做的工作:
-
将引擎说明符添加到 package.json
将 .npmignore 添加到根目录(是否添加,由您自己决定)
提交节点模块文件夹并将其推送到 Github 页面。
通过 Github 部署
仅供参考:我不知道这是否适用于 Heroku Git...如果它有效,请在 cmets 中告诉我。
【讨论】:
非常感谢它工作得很好!我只需要添加引擎说明符,谢谢!【参考方案2】:我尝试了将“引擎”属性添加到 package.json 的解决方案,该解决方案仅使用节点版本(没有 npm 版本),它对我有用。这样您就不必将大型节点模块推送到 GitHub。
【讨论】:
以上是关于Discord bot 不是从 heroku 开始的的主要内容,如果未能解决你的问题,请参考以下文章
通过 Heroku 托管 Discord Bot,在尝试以前的建议后重复 EADDRINUSE 错误
在heroku上部署了discord bot,bot不会上线
Discord bot UnhandledPromiseRejectionWarning 在生产中(HEROKU)[重复]