.. | ||
index.ts | ||
package.json | ||
README.md | ||
tsconfig.json | ||
typedoc.cjs |
@mtcute/socks-proxy
Socks4/5 proxy transport for mtcute.
Usage
import { SocksTcpTransport } from '@mtcute/socks-proxy'
const tg = new TelegramClient({
// ...
transport: () => new SocksTcpTransport({
host: 'localhost',
port: 1080,
})
})