kinetex - v0.0.2
    Preparing search index...

    Interface ProxyConfig

    Proxy middleware — HTTP/HTTPS CONNECT tunnel + SOCKS5 support. Works in Node.js via undici ProxyAgent, gracefully degrades elsewhere. For SOCKS5, install 'socks-proxy-agent' as a peer dep.

    interface ProxyConfig {
        auth?: { password: string; username: string };
        headers?: Record<string, string>;
        noProxy?: string[];
        protocol?: "http" | "https" | "socks5";
        url: string;
    }
    Index

    Properties

    auth?: { password: string; username: string }

    Proxy auth (overrides credentials in url)

    headers?: Record<string, string>

    Extra headers sent to the proxy

    noProxy?: string[]

    Bypass proxy for these hostnames/patterns (also reads NO_PROXY env var)

    protocol?: "http" | "https" | "socks5"

    Force SOCKS5 protocol (requires 'socks-proxy-agent' peer dep)

    url: string