###前提・実現したいこと
下記環境でSlackBOT(BOTアカウント)を運用したいと思っています。
- Heroku - 無料枠
- Node.js
node - v6.2.1
npm - 3.9.3
- BotKit
###発生している問題・エラーメッセージ
いざデプロイしてもBOTアカウントがオンラインになりません。
ログを見てみるとどうやらBotKItが読み込めていないようです。
2016-06-08T13:00:30.976547+00:00 heroku[api]: Release v18 created by 私のアドレス 2016-06-08T13:00:31.153794+00:00 heroku[slug-compiler]: Slug compilation started 2016-06-08T13:00:31.153801+00:00 heroku[slug-compiler]: Slug compilation finished 2016-06-08T13:00:30.976444+00:00 heroku[api]: Deploy 4813df0 by 私のアドレス 2016-06-08T13:00:31.168497+00:00 heroku[worker.1]: State changed from crashed to starting 2016-06-08T13:00:32.145496+00:00 heroku[worker.1]: Starting process with command `node bot/bot.js` 2016-06-08T13:00:32.782072+00:00 heroku[worker.1]: State changed from starting to up 2016-06-08T13:00:33.887886+00:00 app[worker.1]: ^ 2016-06-08T13:00:33.887887+00:00 app[worker.1]: 2016-06-08T13:00:33.887873+00:00 app[worker.1]: module.js:440 2016-06-08T13:00:33.887883+00:00 app[worker.1]: throw err; 2016-06-08T13:00:33.887896+00:00 app[worker.1]: Error: Cannot find module 'botkit' 2016-06-08T13:00:33.887902+00:00 app[worker.1]: at Module.require (module.js:466:17) 2016-06-08T13:00:33.887902+00:00 app[worker.1]: at require (internal/module.js:20:19) 2016-06-08T13:00:33.887901+00:00 app[worker.1]: at Function.Module._resolveFilename (module.js:438:15) 2016-06-08T13:00:33.887901+00:00 app[worker.1]: at Function.Module._load (module.js:386:25) 2016-06-08T13:00:33.887903+00:00 app[worker.1]: at Module._compile (module.js:541:32) 2016-06-08T13:00:33.887903+00:00 app[worker.1]: at Object.Module._extensions..js (module.js:550:10) 2016-06-08T13:00:33.887904+00:00 app[worker.1]: at tryModuleLoad (module.js:415:12) 2016-06-08T13:00:33.887902+00:00 app[worker.1]: at Object.<anonymous> (/app/bot/bot.js:1:76) 2016-06-08T13:00:33.887904+00:00 app[worker.1]: at Function.Module._load (module.js:407:3) 2016-06-08T13:00:33.887903+00:00 app[worker.1]: at Module.load (module.js:456:32) 2016-06-08T13:00:34.666068+00:00 heroku[worker.1]: State changed from up to crashed 2016-06-08T13:00:34.667249+00:00 heroku[worker.1]: State changed from crashed to starting 2016-06-08T13:00:34.617961+00:00 heroku[worker.1]: Process exited with status 1 2016-06-08T13:00:35.784322+00:00 heroku[worker.1]: Starting process with command `node bot/bot.js` 2016-06-08T13:00:36.355478+00:00 heroku[worker.1]: State changed from starting to up 2016-06-08T13:00:37.752493+00:00 app[worker.1]: module.js:440 2016-06-08T13:00:37.752549+00:00 app[worker.1]: throw err; 2016-06-08T13:00:37.752556+00:00 app[worker.1]: Error: Cannot find module 'botkit' 2016-06-08T13:00:37.752551+00:00 app[worker.1]: ^ 2016-06-08T13:00:37.752556+00:00 app[worker.1]: 2016-06-08T13:00:37.752559+00:00 app[worker.1]: at require (internal/module.js:20:19) 2016-06-08T13:00:37.752560+00:00 app[worker.1]: at Module._compile (module.js:541:32) 2016-06-08T13:00:37.752558+00:00 app[worker.1]: at Module.require (module.js:466:17) 2016-06-08T13:00:37.752561+00:00 app[worker.1]: at Object.Module._extensions..js (module.js:550:10) 2016-06-08T13:00:37.752560+00:00 app[worker.1]: at Object.<anonymous> (/app/bot/bot.js:1:76) 2016-06-08T13:00:37.752558+00:00 app[worker.1]: at Function.Module._load (module.js:386:25) 2016-06-08T13:00:37.752557+00:00 app[worker.1]: at Function.Module._resolveFilename (module.js:438:15) 2016-06-08T13:00:37.752561+00:00 app[worker.1]: at Module.load (module.js:456:32) 2016-06-08T13:00:37.752562+00:00 app[worker.1]: at tryModuleLoad (module.js:415:12) 2016-06-08T13:00:37.752562+00:00 app[worker.1]: at Function.Module._load (module.js:407:3) 2016-06-08T13:00:38.445973+00:00 heroku[worker.1]: Process exited with status 1 2016-06-08T13:00:38.461509+00:00 heroku[worker.1]: State changed from up to crashed
###該当のソースコード
botkitの読み込みコードは次の通りです。
javascript
1var Botkit = require('botkit');
###試したこと
デプロイ前にローカルに同様の環境を用意して実行した時はうまくいきました。
Herokuのbashで実行した場合もデプロイ時同様のエラーでした。
~ $ node bot/bot.js module.js:440 throw err; ^ Error: Cannot find module 'botkit' at Function.Module._resolveFilename (module.js:438:15) at Function.Module._load (module.js:386:25) at Module.require (module.js:466:17) at require (internal/module.js:20:19) at Object.<anonymous> (/app/bot/bot.js:1:76) at Module._compile (module.js:541:32) at Object.Module._extensions..js (module.js:550:10) at Module.load (module.js:456:32) at tryModuleLoad (module.js:415:12) at Function.Module._load (module.js:407:3)
もともとはbot.jsとbotkitフォルダは両方ともappに配置していました。
Heroku上でうまくいかないので調べたところnode_modulesフォルダに入れると良いとあったので入れています。
bot.jsをbotフォルダに入れているのは、ルートに置くのをやめただけです。
###補足情報
ディレクトリ構造(botkit省略)
app ├── Procfile ├── bot │ └── bot.js ├── node_modules │ └── botkit └── package.json
Procfile
worker: node bot/bot.js
package.json
json
1{ 2 "engines": { 3 "node": "6.2.1" 4 }, 5 "scripts": { 6 "start": "node bot/bot.js" 7 } 8}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2016/06/09 04:07