Skip to content

grammY

Framework Bot Telegram.

era baru pengembangan bot.

logo grammY

Mulai Cepat

Bot ditulis menggunakan TypeScript (atau JavaScript) dan dapat berjalan di berbagai platform, termasuk Node.js.

npm install grammy lalu tempel kode berikut:

ts
import { Bot } from "grammy";

const bot = new Bot(""); // <-- taruh token bot-mu di antara "" (https://t.me/BotFather)

// Balas pesan apapun dengan "Halo, apa kabar!".
bot.on("message", (ctx) => ctx.reply("Halo, apa kabar!"));

bot.start();
js
const { Bot } = require("grammy");

const bot = new Bot(""); // <-- taruh token bot-mu di antara "" (https://t.me/BotFather)

// Balas pesan apapun dengan "Halo, apa kabar!".
bot.on("message", (ctx) => ctx.reply("Halo, apa kabar!"));

bot.start();
ts
import { Bot } from "https://deno.land/x/grammy@v1.35.0/mod.ts";

const bot = new Bot(""); // <-- taruh token bot-mu di antara "" (https://t.me/BotFather)

// Balas pesan apapun dengan "Halo, apa kabar!".
bot.on("message", (ctx) => ctx.reply("Halo, apa kabar!"));

bot.start();

Berhasil! 🎉


contributor's identicondrmikecrowe

Terima kasih, drmikecrowe, telah menjadi kontributor grammY.

© 2021-2025 · grammY mendukung API Bot Telegram versi 8.2 yang dirilis pada tanggal 1 Januari 2025. (Fitur yang disorot: Verifikasi Chat dan User)