mtcute/packages/dispatcher
2025-01-02 00:19:19 +00:00
..
scripts chore: migrate to antfu eslint config (+ reformat) 2024-08-18 07:18:13 +03:00
src chore(core)!: extract user-specific fields from (Full)Chat to (Full)User 2024-12-09 21:19:41 +03:00
tests chore: bumped @antfu/eslint-config + reformat 2024-12-03 09:55:37 +03:00
package.json chore(release): v0.19.1 2025-01-02 00:19:19 +00:00
README.md chore: migrate to antfu eslint config (+ reformat) 2024-08-18 07:18:13 +03:00
tsconfig.json build: build with vite (initial) 2024-08-24 22:55:25 +03:00

@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!')
})