openclaw/proxyline

Process-global proxy routing for Node.js

32

stars

102

commits

TypeScript

primary language

Sep 8, 2026

updated

proxyline.devBrowse cluster: AI Assistants and Crawlers

README

Proxyline 🌐 — Keep every Node request in line.

CI npm Node.js License

Proxyline banner

Proxyline installs one process-wide proxy policy across Node's built-in HTTP(S) clients, global fetch and Undici, compatible WebSocket clients, and explicit CONNECT tunnels. It is for Node applications that need one runtime to enforce proxy routing, explain its decisions, and restore the original networking globals.

Documentation is available at proxyline.dev.

Install

pnpm add @openclaw/proxyline undici@^8.5.0

Or with npm:

npm install @openclaw/proxyline undici@^8.5.0

Proxyline requires Node.js 22.19.0 or newer and a host undici version in the >=8.5.0 <9 range. The package is ESM-only and includes TypeScript declarations.

Proxyline imports the installed Undici peer entrypoint explicitly, including when loaded under Bun, so its fetch classes and dispatcher cleanup use the same implementation. The static import also lets Node-targeted bundlers include that peer in standalone output.

Quick start

Save this as proxy.mjs:

import { installGlobalProxy } from "@openclaw/proxyline";

const proxy = installGlobalProxy({
  mode: "managed",
  proxyUrl: "http://127.0.0.1:3128",
});
console.log(proxy.explain("https://api.example.com/").reason);
proxy.stop();
node proxy.mjs
# managed-proxy-active

This asks Proxyline for a routing decision without connecting to the placeholder proxy. Install Proxyline before loading application or plugin code that may capture networking functions.

Choose a mode

Proxyline has two explicit routing modes:

ModeConfigurationDirect traffic
managedA required proxyUrl in codeOnly through bypassPolicy, registerBypass(), or withBypass()
ambientHTTP_PROXY, HTTPS_PROXY, ALL_PROXY, and NO_PROXYWhenever the environment has no matching proxy

Managed mode fails during setup when its proxy configuration is missing or unsupported. Ambient mode reads the environment once at installation and stays inactive when no supported HTTP or HTTPS proxy is configured. See Modes and Environment Variables for the complete rules.

Covered traffic

SurfaceHow Proxyline applies the policy
node:http and node:httpsPatches request methods and replaces global and caller-supplied agents
Global fetch and UndiciInstalls a global dispatcher and a compatible fetch stack
WebSocket clientsSupplies proxy.createWebSocketAgent() for clients that accept a Node agent
Explicit tunnelsSupplies openProxyConnectTunnel() for callers that need the connected socket

proxy.createNodeAgent() and proxy.createUndiciDispatcher() expose the same policy to libraries that accept an agent or dispatcher directly. The surface guide describes ownership, TLS preservation, and cleanup for each API.

Bypasses and proxy trust

Managed mode supports deliberate direct-routing exceptions. A bypassPolicy handles installation-time policy, registerBypass() registers an exact process-wide exception, and withBypass() limits an exception to one async context. Each decision remains visible through explain().

For an HTTPS proxy with a private CA, use proxyTls.ca or proxyTls.caFile. That trust applies only to the proxy connection; destination TLS validation remains separate. See Proxy TLS.

Observability and lifecycle

proxy.explain(url) reports proxied or direct, the reason, the surface, and a credential-redacted proxy URL when one applies. The optional onEvent callback receives installation, shutdown, and decision events.

Only one Proxyline runtime is active in a process. A second installation fails by default; ifActive can reuse a compatible runtime or replace it intentionally. proxy.stop() restores the captured Node HTTP(S) methods, global agents, Undici dispatcher, and fetch globals. See Observability and the API Reference.

Security boundary

Proxyline is a Node-process runtime, not an operating-system sandbox. Raw net or tls sockets, native or private transport stacks, networking functions captured before installation, and DNS traffic are outside its boundary. Combine it with operating-system egress controls when code in the process is not trusted.

Read the security model before treating managed mode as an enforcement boundary.

Documentation

Development

pnpm install --frozen-lockfile
pnpm check
pnpm test
pnpm docs:build

License

MIT

Contributors

steipete

77 commits

jesse-merhi

12 commits

SebTardif

7 commits

vincentkoc

4 commits

openclaw/proxyline

Process-global proxy routing for Node.js

32

stars

102

commits

TypeScript

primary language

Sep 8, 2026

updated

proxyline.devBrowse cluster: AI Assistants and Crawlers

README

Proxyline 🌐 — Keep every Node request in line.

CI npm Node.js License

Proxyline banner

Proxyline installs one process-wide proxy policy across Node's built-in HTTP(S) clients, global fetch and Undici, compatible WebSocket clients, and explicit CONNECT tunnels. It is for Node applications that need one runtime to enforce proxy routing, explain its decisions, and restore the original networking globals.

Documentation is available at proxyline.dev.

Install

pnpm add @openclaw/proxyline undici@^8.5.0

Or with npm:

npm install @openclaw/proxyline undici@^8.5.0

Proxyline requires Node.js 22.19.0 or newer and a host undici version in the >=8.5.0 <9 range. The package is ESM-only and includes TypeScript declarations.

Proxyline imports the installed Undici peer entrypoint explicitly, including when loaded under Bun, so its fetch classes and dispatcher cleanup use the same implementation. The static import also lets Node-targeted bundlers include that peer in standalone output.

Quick start

Save this as proxy.mjs:

import { installGlobalProxy } from "@openclaw/proxyline";

const proxy = installGlobalProxy({
  mode: "managed",
  proxyUrl: "http://127.0.0.1:3128",
});
console.log(proxy.explain("https://api.example.com/").reason);
proxy.stop();
node proxy.mjs
# managed-proxy-active

This asks Proxyline for a routing decision without connecting to the placeholder proxy. Install Proxyline before loading application or plugin code that may capture networking functions.

Choose a mode

Proxyline has two explicit routing modes:

ModeConfigurationDirect traffic
managedA required proxyUrl in codeOnly through bypassPolicy, registerBypass(), or withBypass()
ambientHTTP_PROXY, HTTPS_PROXY, ALL_PROXY, and NO_PROXYWhenever the environment has no matching proxy

Managed mode fails during setup when its proxy configuration is missing or unsupported. Ambient mode reads the environment once at installation and stays inactive when no supported HTTP or HTTPS proxy is configured. See Modes and Environment Variables for the complete rules.

Covered traffic

SurfaceHow Proxyline applies the policy
node:http and node:httpsPatches request methods and replaces global and caller-supplied agents
Global fetch and UndiciInstalls a global dispatcher and a compatible fetch stack
WebSocket clientsSupplies proxy.createWebSocketAgent() for clients that accept a Node agent
Explicit tunnelsSupplies openProxyConnectTunnel() for callers that need the connected socket

proxy.createNodeAgent() and proxy.createUndiciDispatcher() expose the same policy to libraries that accept an agent or dispatcher directly. The surface guide describes ownership, TLS preservation, and cleanup for each API.

Bypasses and proxy trust

Managed mode supports deliberate direct-routing exceptions. A bypassPolicy handles installation-time policy, registerBypass() registers an exact process-wide exception, and withBypass() limits an exception to one async context. Each decision remains visible through explain().

For an HTTPS proxy with a private CA, use proxyTls.ca or proxyTls.caFile. That trust applies only to the proxy connection; destination TLS validation remains separate. See Proxy TLS.

Observability and lifecycle

proxy.explain(url) reports proxied or direct, the reason, the surface, and a credential-redacted proxy URL when one applies. The optional onEvent callback receives installation, shutdown, and decision events.

Only one Proxyline runtime is active in a process. A second installation fails by default; ifActive can reuse a compatible runtime or replace it intentionally. proxy.stop() restores the captured Node HTTP(S) methods, global agents, Undici dispatcher, and fetch globals. See Observability and the API Reference.

Security boundary

Proxyline is a Node-process runtime, not an operating-system sandbox. Raw net or tls sockets, native or private transport stacks, networking functions captured before installation, and DNS traffic are outside its boundary. Combine it with operating-system egress controls when code in the process is not trusted.

Read the security model before treating managed mode as an enforcement boundary.

Documentation

Development

pnpm install --frozen-lockfile
pnpm check
pnpm test
pnpm docs:build

License

MIT

Contributors

steipete

77 commits

jesse-merhi

12 commits

SebTardif

7 commits

vincentkoc

4 commits

Languages

TypeScript

82.1%

JavaScript

17.9%