mtcute/packages/dispatcher
2024-08-24 21:52:31 +03:00
..
scripts chore: migrate to antfu eslint config (+ reformat) 2024-08-18 07:18:13 +03:00
src build: don't use stc when building 2024-08-24 21:52:31 +03:00
tests chore: migrate to antfu eslint config (+ reformat) 2024-08-18 07:18:13 +03:00
package.json v0.16.7 2024-08-21 17:56:12 +00:00
README.md chore: migrate to antfu eslint config (+ reformat) 2024-08-18 07:18:13 +03:00
tsconfig.json chore: migrate to antfu eslint config (+ reformat) 2024-08-18 07:18:13 +03:00
typedoc.cjs chore: moved most configs to .config 2023-11-13 13:28:11 +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!')
})