为什么我的Heroku Discord机器人不在线?

时间:2020-01-10 22:18:38

标签: heroku npm discord.js

我正在使用discord.js编程一个discord机器人,并试图使用Heroku托管该机器人。 当我部署它时,Heroku说部署成功,但是我的机器人仍然处于脱机状态。当我检查日志时,它显示:


2020-01-10T21:55:49.598875+00:00 app[worker.1]: npm ERR! code ELIFECYCLE

2020-01-10T21:55:49.599295+00:00 app[worker.1]: npm ERR! errno 1

2020-01-10T21:55:49.600878+00:00 app[worker.1]: npm ERR! funamibot@1.0.0 start: `node index.js`

2020-01-10T21:55:49.601091+00:00 app[worker.1]: npm ERR! Exit status 1

2020-01-10T21:55:49.601329+00:00 app[worker.1]: npm ERR! 

2020-01-10T21:55:49.601552+00:00 app[worker.1]: npm ERR! Failed at the funamibot@1.0.0 start script.

2020-01-10T21:55:49.601651+00:00 app[worker.1]: npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

2020-01-10T21:55:49.607761+00:00 app[worker.1]: 

2020-01-10T21:55:49.607944+00:00 app[worker.1]: npm ERR! A complete log of this run can be found in:

2020-01-10T21:55:49.608089+00:00 app[worker.1]: npm ERR!     /app/.npm/_logs/2020-01-10T21_55_49_602Z-debug.log

从错误中可以看出,它似乎与package.json文件中的启动脚本有关,但是我不确定问题是什么或如何解决。

github上的机器人代码:https://github.com/Yunoxa/funamibot/

1 个答案:

答案 0 :(得分:1)

您必须同时包含用于 node npm 的版本(我建议使用最新版本):

"engines": {
  "node": "12.14.1",
  "npm": "6.13.4"
},

但是,如果您使用的是节点或npm的特定版本,请执行此操作并替换我指定的版本号:

node -v (Returns the current version of Node you're running.)

npm -v (Returns the current version of NPM you're running.)