grammY
El Framework de Bots para Telegram.
Fácil de usar
grammY hace crear bots de Telegram tan simple que ya sabes como hacerlo.
Flexible
grammY es abierto y puede extenderse con plugins para adaptarse a tus necesidades.
Escalable
grammY te tiene cubierto cuando tu bot se vuelve popular y el tráfico se incrementa.
… puede hacer todo menos lavar los platos.
Quickstart
Bots están escritos en Type
npm install grammy
y copia el siguiente código:
import { Bot } from "grammy";
const bot = new Bot(""); // <-- Pon el token del bot aquí (https://t.me/BotFather)
// Responde a cualquier mensaje con "¡Hola a todos!".
bot.on("message", (ctx) => ctx.reply("¡Hola a todos!"));
bot.start();
const { Bot } = require("grammy");
const bot = new Bot(""); // <-- Pon el token del bot aquí (https://t.me/BotFather)
// Responde a cualquier mensaje con "¡Hola a todos!".
bot.on("message", (ctx) => ctx.reply("¡Hola a todos!"));
bot.start();
import { Bot } from "https://deno.land/x/grammy@v1.11.2/mod.ts";
const bot = new Bot(""); // <-- Pon el token del bot aquí (https://t.me/BotFather)
// Responde a cualquier mensaje con "¡Hola a todos!".
bot.on("message", (ctx) => ctx.reply("¡Hola a todos!"));
bot.start();
¡Funciona! 🎉
grammY es compatible con la API 6.2 de Telegram Bot que fue lanzada el 12 de Agosto de 2022. (Último punto destacado: Emojis personalizados)