mtcute/packages/dispatcher
2024-11-20 19:59:48 +03:00
..
scripts chore: migrate to antfu eslint config (+ reformat) 2024-08-18 07:18:13 +03:00
src Merge branch 'master' of github.com:mtcute/mtcute into fuman-net 2024-11-20 19:59:48 +03:00
tests chore: migrate to antfu eslint config (+ reformat) 2024-08-18 07:18:13 +03:00
package.json Merge branch 'master' of github.com:mtcute/mtcute into fuman-net 2024-11-20 19:59:48 +03: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
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!')
})