{
  "_args": [
    [
      {
        "name": "keep-alive-agent",
        "raw": "keep-alive-agent@^0.0.1",
        "rawSpec": "^0.0.1",
        "scope": null,
        "spec": ">=0.0.1 <0.0.2",
        "type": "range"
      },
      "C:\\Workspace\\web-component-tester\\node_modules\\restify"
    ]
  ],
  "_from": "keep-alive-agent@>=0.0.1 <0.0.2",
  "_id": "keep-alive-agent@0.0.1",
  "_inCache": true,
  "_installable": true,
  "_location": "/keep-alive-agent",
  "_npmUser": {
    "email": "ceejceej@gmail.com",
    "name": "ceejbot"
  },
  "_npmVersion": "1.1.65",
  "_phantomChildren": {},
  "_requested": {
    "name": "keep-alive-agent",
    "raw": "keep-alive-agent@^0.0.1",
    "rawSpec": "^0.0.1",
    "scope": null,
    "spec": ">=0.0.1 <0.0.2",
    "type": "range"
  },
  "_requiredBy": [
    "/restify"
  ],
  "_resolved": "https://registry.npmjs.org/keep-alive-agent/-/keep-alive-agent-0.0.1.tgz",
  "_shasum": "44847ca394ce8d6b521ae85816bd64509942b385",
  "_shrinkwrap": null,
  "_spec": "keep-alive-agent@^0.0.1",
  "_where": "C:\\Workspace\\web-component-tester\\node_modules\\restify",
  "bugs": {
    "url": "https://github.com/ceejbot/keep-alive-agent/issues"
  },
  "contributors": [
    {
      "email": "ceejceej@gmail.com",
      "name": "C J Silverio",
      "url": "http://ceejbot.tumblr.com/"
    },
    {
      "email": "dannycoates@gmail.com",
      "name": "Danny Coates",
      "url": "https://github.com/dannycoates/"
    }
  ],
  "dependencies": {},
  "description": "a keep-alive agent for http and https",
  "devDependencies": {
    "chai": "*",
    "mocha": "*"
  },
  "directories": {},
  "dist": {
    "shasum": "44847ca394ce8d6b521ae85816bd64509942b385",
    "tarball": "https://registry.npmjs.org/keep-alive-agent/-/keep-alive-agent-0.0.1.tgz"
  },
  "homepage": "https://github.com/ceejbot/keep-alive-agent#readme",
  "keywords": [
    "keep-alive",
    "http",
    "https",
    "agent"
  ],
  "license": "MIT",
  "main": "index.js",
  "maintainers": [
    {
      "email": "ceejceej@gmail.com",
      "name": "ceejbot"
    }
  ],
  "name": "keep-alive-agent",
  "optionalDependencies": {},
  "readme": "# keep-alive-agent\n\nkeep-alive-agent is an HTTP connection pool agent for node.js that re-uses sockets. It is simpler than some agents that also solve this problem because it does not attempt to replace the Agent provided by node. If you want to re-use connections, use this agent. If you want the default node behavior, use the default global agent.\n\n## Usage\n\n__new KeepAliveAgent(*options-hash*)__\n\nCreate an instance of the agent, passing the options hash through to the node Agent constructor. These options are in turn passed along to `createConnection()`. The KeepAliveAgent constructor does not use the options itself. The option you are most likely to change is `maxSockets`, which defaults to 5.\n\nTo use the agent instance, set it in the `agent` field of the options passed to `http.request()` or `http.get()`. See the [http.request() documentation](http://nodejs.org/api/http.html#http_http_request_options_callback) for details.\n\n__new KeepAliveAgent.Secure(*options-hash*)__\n\nA keep-alive agent that creates tls sockets. Use it the same way you use the http agent.\n\n## Examples\n\n```javascript\nvar http = require('http'),\n    KeepAliveAgent = require('keep-alive-agent');\n\nvar getOptions = {\n    hostname: 'twitter.com',\n    port: 80,\n    path: '/dshaw',\n    agent: new KeepAliveAgent(),\n};\nhttp.get(getOptions, function(response)\n{\n\tresponse.pipe(process.stdout);\n});\n```\n\nTo re-use secure connections, use the Secure keep-alive agent:\n\n```javascript\nvar https = require('https'),\n    KeepAliveAgent = require('keep-alive-agent');\n\nvar getOptions = {\n    hostname: 'www.duckduckgo.com',\n    port: 443,\n    path: '/?q=unicorns',\n    agent: new KeepAliveAgent.Secure(),\n};\nhttps.get(getOptions, function(response)\n{\n\tresponse.pipe(process.stdout);\n});\n```\n\n## See Also\n\nFor other implementations, see [agentkeepalive](https://github.com/TBEDP/agentkeepalive) and the [request](https://github.com/mikeal/request) module's [ForeverAgent](https://github.com/mikeal/request/blob/master/forever.js).\n\n## Licence\n\nMIT.\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git://github.com/ceejbot/keep-alive-agent.git"
  },
  "scripts": {
    "test": "mocha -R spec test/*.js"
  },
  "version": "0.0.1"
}
