import { Deno } from "https://deno.land/x/deno@v2.0.4/cli/tsc/dts/lib.deno.ns.d.ts";
const { HttpClient } = Deno;
A custom HttpClient
for use with fetch
function. This is
designed to allow custom certificates or proxies to be used with fetch()
.
Examples
Example 1
Example 1
const caCert = await Deno.readTextFile("./ca.pem");
const client = Deno.createHttpClient({ caCerts: [ caCert ] });
const req = await fetch("https://myserver.com", { client });
Methods
close(): void
Close the HTTP client.
[Symbol.dispose](): void