npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

barex-https-proxy-agent

v0.1.0

Published

HTTP CONNECT proxy agents for Bare, for bare-fetch and bare-ws

Readme

barex-https-proxy-agent

HTTP CONNECT proxy agents for Bare - for bare-fetch, bare-ws, and anything else that takes a bare-http1 agent.

Named for what Node's https-proxy-agent does: ask an http proxy for a tunnel and speak to the target through it. Both http: and https: targets can go through the tunnel, which is why there is an agent for each. For http: targets through a proxy that forwards rather than tunnels - Node's http-proxy-agent - see barex-http-proxy-agent.

npm i barex-https-proxy-agent

Usage

import { createAgents } from 'barex-https-proxy-agent'

const agents = createAgents('http://proxy.lan:3128')

const response = await fetch('https://example.com', { agent: agents.https })
const socket = new Socket('wss://relay.example', { agent: agents.https }) // bare-ws

With credentials, which are sent as Proxy-Authorization: Basic:

createAgents('http://me:[email protected]:3128')

An https:// proxy url means the first hop is itself TLS, so the CONNECT request - and any credentials in it - is encrypted to the proxy rather than sent in the clear:

createAgents('https://proxy.example:443')

What the proxy sees

A tunnel has to be asked for by name, so the proxy learns the host and port. It never sees inside: agents.https negotiates TLS with the target through the tunnel, and the certificate is checked against the host that was asked for. Nothing is sent beyond what the method needs - no user agent, no cookies.

Redirects and target schemes

A standalone agent rejects an incompatible explicit target scheme with ProxyError, including HTTPS on nonstandard ports. Use the linked pair from createAgents() in barex-any-proxy-agent to route HTTP requests by forwarding and HTTPS requests by CONNECT. The CONNECT package's own pair tunnels both kinds of target. Pairs delegate before pooling or rewriting headers, so bare-fetch can safely retain its initial agent across redirects.

Automatic routing requires clients that pass opts.protocol: bare-http1 4.6.2 and bare-https 3.1.0 or newer. For older clients, follow redirects manually and select the agent before issuing each request. Checking the final response URL is too late.

API

createAgents(proxy[, opts])

{ http, https } - an agent for http: targets and one for https: ones, both tunnelling. proxy is a url string or the result of parse(); opts goes to bare-http1's Agent. Keep-alive is on by default, so a tunnel is reused rather than rebuilt per request.

new HttpsProxyHTTPAgent(proxy[, opts]) / new HttpsProxyHTTPSAgent(proxy[, opts])

The two agents on their own, for when only one is wanted.

parse(url)

{ protocol, host, port, username, password, secure } for an http:// or https:// proxy url, secure saying whether the proxy itself is reached over TLS. Host and port only - a path or a query is refused rather than guessed at, and so is a missing port. There is no default worth having: http-proxy-agent reads a port-less proxy url as port 80, curl reads it as 1080, and 8080 is where proxies actually tend to listen. A guess that lands on the wrong service is handed the Proxy-Authorization header before anything notices, and the port is one word that only the person configuring it knows.

handshake({ socket, reader, proxy, target })

The CONNECT handshake itself, for use with barex-proxy-agent directly.

CONNECT response headers, including the final blank line, are limited to 16 KiB. An oversized or unterminated response fails with ProxyError as soon as that limit is reached. Target data arriving after valid headers is preserved separately.

ProxyError / proxyErrorIn(err)

Re-exported from barex-proxy-agent. bare-fetch reports every failure as NETWORK_ERROR: Network error and keeps the reason as its cause - proxyErrorIn digs out the one that says the proxy refused the tunnel, or wants a password.

Compared to Node's proxy agents

The surface follows socks-proxy-agent and https-proxy-agent wherever it can: new Agent(url | URL | parsed, opts), static protocols, agent.proxy, agent.proxyUrl, and opts passed through to the underlying Agent. What differs is forced by Bare, and is worth knowing before porting code across:

| | Node | here | | ------------------ | --------------------------------------------------- | ------------------------------------------------------------------ | | base class | agent-base's Agent, over http.Agent | bare-http1's Agent | | hook | connect(req, opts) returning a socket or an agent | createConnection(opts) returning a socket | | target protocol | opts.secureEndpoint, added by agent-base | opts.protocol | | one agent for both | yes - the class reads secureEndpoint | a linked pair delegates by target protocol | | handshake timeout | opts.timeout | opts.handshakeTimeout (timeout is bare-http1's socket timeout) |

Nothing in the Node stack can be reused as it stands: Bare has no net, tls or http builtins, and agent-base is written against Node's http.Agent internals. The pair of agents is the one real ergonomic difference - bare-http1 hands an agent no way to tell an https: target from an http: one, so which one a request needs is the caller's to pick. createAgents() returns both for exactly that reason.

Node uses an http proxy two ways, and so do we: https-proxy-agent tunnels, while http-proxy-agent sends http: requests to the proxy as an absolute URI (GET http://host/path) rather than tunnelling them. The split is the same here - barex-http-proxy-agent is the forwarding half. agents.http tunnels, so it behaves like https-proxy-agent pointed at an http: target: most proxies take that, but one configured to allow CONNECT only to port 443 - a common Squid default - will refuse a tunnel to port 80 that a forwarded request would have got through.

opts.headers and agent.proxyHeaders match https-proxy-agent, function form included. onProxyAuth and negotiate (NTLM/Kerberos negotiation) have no equivalent here.

Licence

Apache-2.0