@mtcute/dispatcher
v0.17.2
Published
Updates dispatcher and bot framework for @mtcute/client
Downloads
180
Readme
@mtcute/dispatcher
📖 API Reference 🧐 Guide
Dispatcher and bot framework based on @mtcute/core.
Features
- Straightforward: Simple and expressive API
- State: Supports storing state for each chat
- Filters: Powerful and easy-to-use filtering system
- Middleware: Basic middleware support for updates
- Scenes: Built-in support for scenes
Usage
import { Dispatcher } from '@mtcute/dispatcher'
const tg = new TelegramClient({ ... })
const dp = Dispatcher.for(tg)
dp.onNewMessage(async (msg) => {
await msg.replyText('Hello world!')
})