Appearance
node-telegram-bot-api
grammy
grammy is a modern library for creating telegram bots.
Example:
import { Bot } from 'grammy' const bot = new Bot(process.env.TOKEN) bot.on('message', (ctx) => ctx.reply('Hi there!')) bot.start()