telegraff v5.0.0
Attention
Official Telegraf.js is "dead" after 4.0.0 release. This is a fork of version 3.38 which will continue to support new versions of the Telegram Bot API
Introduction
Bots are special Telegram accounts designed to handle messages automatically. Users can interact with bots by sending them command messages in private or group chats. These accounts serve as an interface for code running somewhere on your server.
Features
- Full Telegram Bot API 5.0 support
- Telegram Payment Platform
- HTML5 Games
- Inline mode
- Incredibly fast
- now/Firebase/Glitch/Heroku/AWS λ/Whatever ready
http/https/fastify/Connect.js/express.jscompatible webhooks- Easy to extend
TypeScripttypings- Сlean and readable code 😉
Installation
$ npm install telegraffor using yarn:
$ yarn add telegraffDocumentation
Examples
const { Telegraf } = require('telegraff')
const bot = new Telegraf(process.env.BOT_TOKEN)
bot.start((ctx) => ctx.reply('Welcome!'))
bot.help((ctx) => ctx.reply('Send me a sticker'))
bot.on('sticker', (ctx) => ctx.reply('👍'))
bot.hears('hi', (ctx) => ctx.reply('Hey there'))
bot.launch()const { Telegraf } = require('telegraff')
const bot = new Telegraf(process.env.BOT_TOKEN)
bot.command('oldschool', (ctx) => ctx.reply('Hello'))
bot.command('modern', ({ reply }) => reply('Yo'))
bot.command('hipster', Telegraf.reply('λ'))
bot.launch()There's some cool examples too.
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
6 years ago