
Research
SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.
auto-http-agent
Advanced tools
Create an http agent for proxies and/or keepAlive. Returns a proxy if a given URL should be proxied according to the HTTP_PROXY, HTTPS_PROXY and NO_PROXY environment variables. Uses a global pool of agents for up to 8 combinations of options (for example, proxied https URLs will share an agent).
const autoAgent = require('auto-http-agent')
const url = 'http://example.com'
const agent = autoAgent(url)
// Pass to your module of choice
request(url, { agent })
autoAgent(url[, options])The url argument is required and must either be a string or a WHATWG URL instance, with an HTTP or HTTPS protocol.
Options:
keepAlive (boolean): reuse connections between requests, default false.Returns an agent or null if the default agent can be used (i.e. http.globalAgent or https.globalAgent). Has a fast path for the common case of not having any configured proxy. The autoAgent module should behave the same as good old request and other software. It respects the following environment variables.
HTTP_PROXYA proxy URL to use for HTTP requests, e.g. http://localhost:3000. The proxy itself can be either HTTP or HTTPS.
HTTPS_PROXYA proxy URL to use for HTTPS requests. The proxy itself can be either HTTP or HTTPS.
NO_PROXYA comma-separated list of hosts (including subdomains) that should not be proxied. Supported forms:
hostname:porthostname or .hostname or *.hostname* to disable proxying for all URLsWith npm do:
npm install auto-http-agent
MIT © Vincent Weevers
FAQs
Create http agent for HTTP(S)_PROXY proxies and/or keepAlive
We found that auto-http-agent demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.

Company News
Socket is proud to join the OpenJS Foundation as a Silver Member, deepening our commitment to the long-term health and security of the JavaScript ecosystem.

Security News
npm now links to Socket's security analysis on every package page. Here's what you'll find when you click through.