Socket
Socket
Sign inDemoInstall

infinity-agent

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

infinity-agent

Creates HTTP/HTTPS Agent with Infinity maxSockets


Version published
Maintainers
1
Created
Source

infinity-agent Build Status

Returns HTTP/HTTPS agent based on URL or options.

Usage

var agent = require('infinity-agent');
var http = require('http');
var https = require('https');

http.get('http://google.com', { agent: agent('http://google.com') });
https.get('http://google.com', { agent: agent('https://google.com') });

API

agent(options)

Returns instance of HTTP/HTTPS agent, based on options.

This what agent could return:

  • undefined, if http.Agent.defaultMaxSockets is Infinity
  • agent.httpAgent, if options.protocol === 'http:' (agent.httpsAgent otherwise)
  • New instance of HTTPS agent with options, if they contains any of tls options
options

Required
Type: String or Object from url.parse

License

MIT © Vsevolod Strukchinsky

Keywords

FAQs

Package last updated on 04 Jan 2015

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc