Make request on the Tor network with Deno 🕶
need to have Tor socks5 proxy running, on linux run
tor
import { Tor } from "https://deno.land/x/tor/mod.ts"
const tor = new Tor()await tor.start()let check = tor.checkProxyIsOnline()let response = await tor.get("YOUR_ONION_URL");let response = await tor.post("YOUR_ONION_URL", "HERE YOUR DATA");