mtcute/packages/bun
2025-01-02 00:19:19 +00:00
..
src fix: fixed deno types and build 2025-01-01 21:55:42 +03:00
build.config.js build: bumped typedoc and moved to fuman-build typedoc 2024-12-28 11:25:22 +03:00
package.json chore(release): v0.19.1 2025-01-02 00:19:19 +00:00
README.md chore: deprecated .run method 2024-07-26 06:46:18 +03:00
tsconfig.json build: build with vite (initial) 2024-08-24 22:55:25 +03:00

@mtcute/bun

📖 API Reference

‼️ Experimental Bun support package for mtcute. Includes:

  • SQLite storage (based on bun:sqlite)
  • TCP transport (based on Bun-native APIs)
  • TelegramClient implementation using the above
  • HTML and Markdown parsers

Usage

import { TelegramClient } from '@mtcute/bun'

const tg = new TelegramClient({
    apiId: 12345,
    apiHash: 'abcdef',
    storage: 'my-account'
})

const self = await tg.start()
console.log(`✨ logged in as ${self.displayName}`)