Skip to content

Instantly share code, notes, and snippets.

@frangio
Last active May 16, 2017 17:38
Show Gist options
  • Save frangio/ccc5f008cf267a2de3fa to your computer and use it in GitHub Desktop.
Save frangio/ccc5f008cf267a2de3fa to your computer and use it in GitHub Desktop.
var TelegramBot = require('node-telegram-bot-api');
var token = 'TOKEN';
var bot = new TelegramBot(token, {polling: true});
bot.getMe().then(function (me) {
console.log('%s on', me.username);
});
bot.on('text', function (msg) {
bot.sendMessage(msg.chat.id, 'hola');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment