1.0.2 • Published 5 years ago

botkit-chatbase-middleware v1.0.2

Weekly downloads
3
License
ISC
Repository
github
Last release
5 years ago

botkit-chatbase-middleware

A middleware package for Botkit that easily logs your convos in Chatbase

Install

npm install botkit-chatbase-middleware --save

Usage It's really simple!

First, in your bot.js file, include this module and initialize it with your Chatbase API key.

var chatbase = require('botkit-chatbase-middleware')(API_KEY, PLATFORM);

Second, add the following code, usually right after initializing the Botkit controller.

controller.middleware.receive.use(chatbase.receive);
controller.middleware.send.use(chatbase.send);

That's it!

Disclaimer

All mention of Chatbase and its use in this project are copyright of Chatbase and Google at http://chatbase.com and http://google.com, respectively.

I do not work for Chatbase or Google, nor does Chatbase or Google endorse this project in any way. I'm the CTO of Obie.ai who needs analytics on my bot!

License

MIT License

Copyright (c) 2019 Mario Centeno

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.