mtcute-bot
27b0ef68de
All checks were successful
Tests / lint (push) Has been skipped
Tests / test-node (node18) (push) Successful in 1m43s
Tests / test-deno (push) Successful in 1m37s
Tests / test-node (node20) (push) Successful in 1m46s
Tests / test-node (node22) (push) Successful in 1m44s
Tests / test-web (chromium) (push) Successful in 1m42s
Tests / test-web (firefox) (push) Successful in 1m48s
Tests / e2e (push) Has been skipped
Tests / e2e-deno (push) Has been skipped
Tests / test-bun (push) Successful in 1m49s
Docs / build (push) Successful in 6m10s
|
||
---|---|---|
.. | ||
src | ||
build.config.js | ||
package.json | ||
README.md | ||
tsconfig.json |
@mtcute/deno
‼️ Experimental Deno support package for mtcute. Includes:
- SQLite storage (based on
@db/sqlite
) - TCP transport (based on Deno-native APIs)
TelegramClient
implementation using the above- HTML and Markdown parsers
Usage
import { TelegramClient } from '@mtcute/deno'
const tg = new TelegramClient({
apiId: 12345,
apiHash: 'abcdef',
storage: 'my-account'
})
const self = await tg.start()
console.log(`✨ logged in as ${self.displayName}`)