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
|
||
---|---|---|
.. | ||
src | ||
build.config.js | ||
package.json | ||
README.md | ||
tsconfig.json |
@mtcute/node
Node.js support package for mtcute. Includes:
- Support for native crypto addon (must be installed separately,
@mtcute/crypto-node
) - Terminal I/O via
readline
- SQLite storage (via
better-sqlite3
) - TCP transport (via
node:net
) TelegramClient
implementation using the above- HTML and Markdown parsers
Usage
import { TelegramClient } from '@mtcute/node'
const tg = new TelegramClient({
apiId: 12345,
apiHash: 'abcdef',
storage: 'my-account'
})
const self = await tg.start()
console.log(`✨ logged in as ${self.displayName}`)