Skip to content

Instantly share code, notes, and snippets.

@suntong
Created January 11, 2020 20:43
Show Gist options
  • Save suntong/c6f732d0aba128723648f30f98084606 to your computer and use it in GitHub Desktop.
Save suntong/c6f732d0aba128723648f30f98084606 to your computer and use it in GitHub Desktop.
const Slimbot = require('slimbot');
const slimbot = new Slimbot(process.env['TELEGRAM_BOT_TOKEN']);
// Register listeners
slimbot.on('message', message => {
// reply when user sends a message
slimbot.sendMessage(message.chat.id, 'Message received');
});
slimbot.on('edited_message', edited_message => {
// reply when user edits a message
slimbot.sendMessage(edited_message.chat.id, 'Message edited');
});
// Call API
slimbot.startPolling();
console.log('polling...');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment