Socket
Book a DemoInstallSign in
Socket

auto-http-agent

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

auto-http-agent

Create http agent for HTTP(S)_PROXY proxies and/or keepAlive

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

auto-http-agent

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).

npm status node Test JavaScript Style Guide

Usage

const autoAgent = require('auto-http-agent')

const url = 'http://example.com'
const agent = autoAgent(url)

// Pass to your module of choice
request(url, { agent })

API

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_PROXY

A proxy URL to use for HTTP requests, e.g. http://localhost:3000. The proxy itself can be either HTTP or HTTPS.

HTTPS_PROXY

A proxy URL to use for HTTPS requests. The proxy itself can be either HTTP or HTTPS.

NO_PROXY

A comma-separated list of hosts (including subdomains) that should not be proxied. Supported forms:

  • hostname:port
  • hostname or .hostname or *.hostname
  • * to disable proxying for all URLs

Install

With npm do:

npm install auto-http-agent

License

MIT © Vincent Weevers

Keywords

agent

FAQs

Package last updated on 13 Dec 2020

Did you know?

Socket

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.

Install

Related posts