botlytics-middleware
v1.0.0
Published
Middleware for Botlytics API
Downloads
4
Maintainers
Readme
botlytics-middleware
Node module for Botlytics API.
Refer to Botlytics official docs here.
Installation
npm install botlytics-middleware
Usage
In your app.js add requirements for botlytics-middleware package and set:
- your Botlytics token (required)
- a unique bot id (optional)
var BotlyticsMiddleware = require('botlytics-middleware')({
token: "<<BOTLYTICS_TOKEN>>",
botId: "<<BOT_ID>>"
});