├── .gitignore ├── README.md ├── database ├── question.json └── respond.json ├── index.js ├── package.json └── src ├── db.js └── handleMessage.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | screenlog* 3 | *.swp 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryLuTW/facebook-chat-bot/HEAD/README.md -------------------------------------------------------------------------------- /database/question.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryLuTW/facebook-chat-bot/HEAD/database/question.json -------------------------------------------------------------------------------- /database/respond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryLuTW/facebook-chat-bot/HEAD/database/respond.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryLuTW/facebook-chat-bot/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryLuTW/facebook-chat-bot/HEAD/package.json -------------------------------------------------------------------------------- /src/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryLuTW/facebook-chat-bot/HEAD/src/db.js -------------------------------------------------------------------------------- /src/handleMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryLuTW/facebook-chat-bot/HEAD/src/handleMessage.js --------------------------------------------------------------------------------