depoio / node-telegram-bot

Client wrapper for Telegram Bot API (Under heavy development)
MIT License
136 stars 30 forks source link

Add botan.io analytics #52

Closed Luchanso closed 8 years ago

Luchanso commented 8 years ago

Bot analytics from issue #34 All tested on my bots

How to use:

var bot = new Bot({
  token: 'TOKEN HERE'
})
.enableAnalytics(botan_api_key)
.on('message', function (message) {
  console.log(message);
})
.start();
shernshiou commented 8 years ago

@Luchanso thanks.