Skip to content

webtor-wasm v0.5.7

Latest

Choose a tag to compare

@github-actions github-actions released this 06 Jan 12:16
· 121 commits to main since this release
ca5ef7f

webtor-wasm v0.5.7

Pre-built WebAssembly bindings for webtor-rs.

Installation

Download and extract to your project:

curl -L https://github.com/igor53627/webtor-rs/releases/download/v0.5.7/webtor-wasm-v0.5.7.tar.gz | tar xz -C ./vendor/webtor-wasm

Usage

import init, { TorClient, TorClientOptions } from './vendor/webtor-wasm/webtor_wasm.js'

await init()
const options = new TorClientOptions('wss://snowflake.torproject.net/')
const client = await new TorClient(options)
await client.waitForCircuit()