UNPKG

telebot

Version:

Easy way to write Telegram bots.

17 lines (12 loc) 369 B
'use strict'; const TeleBot = require('../'); const bot = new TeleBot('-PASTEYOURTELEGRAMBOTAPITOKENHERE-'); // Send user message to himself bot.on('text', msg => bot.sendMessage(msg.from.id, msg.text)); // Mod every text message bot.mod('text', data => { const msg = data.msg; msg.text = `📢 ${ msg.text }`; return data; }); bot.connect();