UNPKG

telebot

Version:

Easy way to write Telegram bots.

14 lines (10 loc) 293 B
'use strict'; const TeleBot = require('../'); const bot = new TeleBot('-PASTEYOURTELEGRAMBOTAPITOKENHERE-'); // On every text message bot.on('text', msg => { let id = msg.from.id; let text = msg.text; return bot.sendMessage(id, `You said: ${ text }`); }); bot.connect();