| description | Modern alternatives to the node-telegram-bot-api package |
|---|
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()