mtcute/packages/web
alina sireneva c3a0ba400f
All checks were successful
Tests / test-deno (push) Successful in 1m44s
Tests / test-node (node22) (push) Successful in 1m52s
Tests / test-node (node20) (push) Successful in 1m56s
Tests / test-node (node18) (push) Successful in 2m0s
Tests / test-web (chromium) (push) Successful in 1m51s
Tests / test-bun (push) Successful in 2m3s
Tests / test-web (firefox) (push) Successful in 1m2s
Docs / build (push) Successful in 6m14s
Tests / lint (push) Successful in 7m0s
Tests / e2e (push) Successful in 51s
Tests / e2e-deno (push) Successful in 5m8s
build: bumped fuman
2025-01-06 17:53:41 +03: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 build: bumped fuman 2025-01-06 17:53:41 +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

@mtcute/web

📖 API Reference

Web support package for mtcute. Includes:

  • WASM crypto provider
  • Websocket transport
  • IndexedDB storage
  • TelegramClient implementation using the above

Usage

import { TelegramClient } from '@mtcute/web'

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

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

Usage with workers

You can also use this package with web workers to offload most of the heavy lifting to a separate thread:

// worker.ts
import { BaseTelegramClient, TelegramWorker } from '@mtcute/web'

// main.ts
import { TelegramClient, TelegramWorkerPort } from '@mtcute/web'

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

new TelegramWorker({ client })

const worker = new Worker(new URL('./worker.ts', import.meta.url), { type: 'module' }) // or SharedWorker
const port = new TelegramWorkerPort({ worker })
const tg = new TelegramClient({ client: port })

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