mtcute/packages/socks-proxy
2024-05-10 01:27:30 +00:00
..
index.ts fix: tsconfig refs 2024-03-07 05:35:36 +03:00
package.json v0.12.0 2024-05-10 01:27:30 +00:00
README.md docs: updated packages readmes 2023-11-01 14:05:45 +03:00
tsconfig.json fix: tsconfig refs 2024-03-07 05:35:36 +03:00
typedoc.cjs chore: moved most configs to .config 2023-11-13 13:28:11 +03:00

@mtcute/socks-proxy

📖 API Reference

Socks4/5 proxy transport for mtcute.

Usage

import { SocksTcpTransport } from '@mtcute/socks-proxy'

const tg = new TelegramClient({
    // ...
    transport: () => new SocksTcpTransport({
        host: 'localhost',
        port: 1080,
    })
})