{"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"}],"dist-tags":{"latest":"1.0.3"},"author":{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},"description":"Node.js final http responder","readme":"# finalhandler\n\n[![NPM Version][npm-image]][npm-url]\n[![NPM Downloads][downloads-image]][downloads-url]\n[![Node.js Version][node-image]][node-url]\n[![Build Status][travis-image]][travis-url]\n[![Test Coverage][coveralls-image]][coveralls-url]\n\nNode.js function to invoke as the final step to respond to HTTP request.\n\n## Installation\n\nThis is a [Node.js](https://nodejs.org/en/) module available through the\n[npm registry](https://www.npmjs.com/). Installation is done using the\n[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally):\n\n```sh\n$ npm install finalhandler\n```\n\n## API\n\n```\nvar finalhandler = require('finalhandler')\n```\n\n### finalhandler(req, res, [options])\n\nReturns function to be invoked as the final step for the given `req` and `res`.\nThis function is to be invoked as `fn(err)`. If `err` is falsy, the handler will\nwrite out a 404 response to the `res`. If it is truthy, an error response will\nbe written out to the `res`.\n\nWhen an error is written, the following information is added to the response:\n\n  * The `res.statusCode` is set from `err.status` (or `err.statusCode`). If\n    this value is outside the 4xx or 5xx range, it will be set to 500.\n  * The `res.statusMessage` is set according to the status code.\n  * The body will be the HTML of the status code message if `env` is\n    `'production'`, otherwise will be `err.stack`.\n  * Any headers specified in an `err.headers` object.\n\nThe final handler will also unpipe anything from `req` when it is invoked.\n\n#### options.env\n\nBy default, the environment is determined by `NODE_ENV` variable, but it can be\noverridden by this option.\n\n#### options.onerror\n\nProvide a function to be called with the `err` when it exists. Can be used for\nwriting errors to a central location without excessive function generation. Called\nas `onerror(err, req, res)`.\n\n## Examples\n\n### always 404\n\n```js\nvar finalhandler = require('finalhandler')\nvar http = require('http')\n\nvar server = http.createServer(function (req, res) {\n  var done = finalhandler(req, res)\n  done()\n})\n\nserver.listen(3000)\n```\n\n### perform simple action\n\n```js\nvar finalhandler = require('finalhandler')\nvar fs = require('fs')\nvar http = require('http')\n\nvar server = http.createServer(function (req, res) {\n  var done = finalhandler(req, res)\n\n  fs.readFile('index.html', function (err, buf) {\n    if (err) return done(err)\n    res.setHeader('Content-Type', 'text/html')\n    res.end(buf)\n  })\n})\n\nserver.listen(3000)\n```\n\n### use with middleware-style functions\n\n```js\nvar finalhandler = require('finalhandler')\nvar http = require('http')\nvar serveStatic = require('serve-static')\n\nvar serve = serveStatic('public')\n\nvar server = http.createServer(function (req, res) {\n  var done = finalhandler(req, res)\n  serve(req, res, done)\n})\n\nserver.listen(3000)\n```\n\n### keep log of all errors\n\n```js\nvar finalhandler = require('finalhandler')\nvar fs = require('fs')\nvar http = require('http')\n\nvar server = http.createServer(function (req, res) {\n  var done = finalhandler(req, res, {onerror: logerror})\n\n  fs.readFile('index.html', function (err, buf) {\n    if (err) return done(err)\n    res.setHeader('Content-Type', 'text/html')\n    res.end(buf)\n  })\n})\n\nserver.listen(3000)\n\nfunction logerror (err) {\n  console.error(err.stack || err.toString())\n}\n```\n\n## License\n\n[MIT](LICENSE)\n\n[npm-image]: https://img.shields.io/npm/v/finalhandler.svg\n[npm-url]: https://npmjs.org/package/finalhandler\n[node-image]: https://img.shields.io/node/v/finalhandler.svg\n[node-url]: https://nodejs.org/en/download\n[travis-image]: https://img.shields.io/travis/pillarjs/finalhandler.svg\n[travis-url]: https://travis-ci.org/pillarjs/finalhandler\n[coveralls-image]: https://img.shields.io/coveralls/pillarjs/finalhandler.svg\n[coveralls-url]: https://coveralls.io/r/pillarjs/finalhandler?branch=master\n[downloads-image]: https://img.shields.io/npm/dm/finalhandler.svg\n[downloads-url]: https://npmjs.org/package/finalhandler\n","repository":{"type":"git","url":"git+https://github.com/pillarjs/finalhandler.git"},"users":{"akiva":true,"simplyianm":true,"qqqppp9998":true,"nex":true,"princetoad":true,"wangnan0610":true,"kistoryg":true,"monjer":true,"mojaray2k":true,"jetthiago":true,"ziflex":true,"tampham47":true,"leonzhao":true,"quafoo":true,"ridermansb":true,"chaoliu":true,"larrychen":true},"bugs":{"url":"https://github.com/pillarjs/finalhandler/issues"},"license":"MIT","versions":{"0.0.0":{"name":"finalhandler","description":"Node.js final http responder","version":"0.0.0","author":{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},"license":"MIT","repository":{"type":"git","url":"git://github.com/expressjs/finalhandler"},"dependencies":{"debug":"1.0.0","escape-html":"1.0.1"},"devDependencies":{"istanbul":"0.2.10","mocha":"~1.20.1","should":"~4.0.1","supertest":"~0.13.0"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"mocha --reporter dot test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec test/"},"bugs":{"url":"https://github.com/expressjs/finalhandler/issues"},"homepage":"https://github.com/expressjs/finalhandler","_id":"finalhandler@0.0.0","_shasum":"1dcd03de37b283d0593b47a327535c9490d5b246","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"}],"dist":{"shasum":"1dcd03de37b283d0593b47a327535c9490d5b246","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/finalhandler/-/finalhandler-0.0.0.tgz"},"directories":{}},"0.0.1":{"name":"finalhandler","description":"Node.js final http responder","version":"0.0.1","author":{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},"license":"MIT","repository":{"type":"git","url":"git://github.com/expressjs/finalhandler"},"dependencies":{"debug":"1.0.2","escape-html":"1.0.1"},"devDependencies":{"istanbul":"0.2.10","mocha":"~1.20.1","should":"~4.0.1","supertest":"~0.13.0"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"mocha --reporter dot test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec test/"},"bugs":{"url":"https://github.com/expressjs/finalhandler/issues"},"homepage":"https://github.com/expressjs/finalhandler","_id":"finalhandler@0.0.1","dist":{"shasum":"624429d98b41ab1538b21b97086a74f23b07fcd6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/finalhandler/-/finalhandler-0.0.1.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"directories":{}},"0.0.2":{"name":"finalhandler","description":"Node.js final http responder","version":"0.0.2","author":{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},"license":"MIT","repository":{"type":"git","url":"git://github.com/expressjs/finalhandler"},"dependencies":{"debug":"1.0.2","escape-html":"1.0.1"},"devDependencies":{"istanbul":"0.2.10","mocha":"~1.20.1","should":"~4.0.1","supertest":"~0.13.0"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"mocha --reporter dot test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec test/"},"bugs":{"url":"https://github.com/expressjs/finalhandler/issues"},"homepage":"https://github.com/expressjs/finalhandler","_id":"finalhandler@0.0.2","dist":{"shasum":"0603d875ee87d567a266692815cc8ad44fcceeda","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/finalhandler/-/finalhandler-0.0.2.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"directories":{}},"0.0.3":{"name":"finalhandler","description":"Node.js final http responder","version":"0.0.3","author":{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},"license":"MIT","repository":{"type":"git","url":"git://github.com/expressjs/finalhandler"},"dependencies":{"debug":"1.0.3","escape-html":"1.0.1"},"devDependencies":{"istanbul":"0.3.0","mocha":"~1.20.1","should":"~4.0.1","supertest":"~0.13.0"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"mocha --reporter dot test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec test/"},"bugs":{"url":"https://github.com/expressjs/finalhandler/issues"},"homepage":"https://github.com/expressjs/finalhandler","_id":"finalhandler@0.0.3","dist":{"shasum":"5a86b7bc4dca3d1275eb0532c81ee81d747504df","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/finalhandler/-/finalhandler-0.0.3.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"directories":{}},"0.1.0":{"name":"finalhandler","description":"Node.js final http responder","version":"0.1.0","author":{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},"license":"MIT","repository":{"type":"git","url":"git://github.com/expressjs/finalhandler"},"dependencies":{"debug":"1.0.4","escape-html":"1.0.1"},"devDependencies":{"istanbul":"0.3.0","mocha":"~1.20.1","readable-stream":"~1.0.27","should":"~4.0.1","supertest":"~0.13.0"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"mocha --reporter dot test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec test/"},"bugs":{"url":"https://github.com/expressjs/finalhandler/issues"},"homepage":"https://github.com/expressjs/finalhandler","_id":"finalhandler@0.1.0","dist":{"shasum":"da05bbc4f5f4a30c84ce1d91f3c154007c4e9daa","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/finalhandler/-/finalhandler-0.1.0.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"directories":{}},"0.2.0":{"name":"finalhandler","description":"Node.js final http responder","version":"0.2.0","author":{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},"license":"MIT","repository":{"type":"git","url":"https://github.com/pillarjs/finalhandler"},"dependencies":{"debug":"~2.0.0","escape-html":"1.0.1"},"devDependencies":{"istanbul":"0.3.0","mocha":"~1.21.4","readable-stream":"~1.0.27","should":"~4.0.1","supertest":"~0.13.0"},"files":["LICENSE","HISTORY.md","index.js"],"engines":{"node":">= 0.8.0"},"scripts":{"test":"mocha --reporter spec --bail --check-leaks test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"gitHead":"0e5d26695b1ab248823366018f09c058a4eaf59b","bugs":{"url":"https://github.com/pillarjs/finalhandler/issues"},"homepage":"https://github.com/pillarjs/finalhandler","_id":"finalhandler@0.2.0","_shasum":"794082424b17f6a4b2a0eda39f9db6948ee4be8d","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"dist":{"shasum":"794082424b17f6a4b2a0eda39f9db6948ee4be8d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/finalhandler/-/finalhandler-0.2.0.tgz"},"directories":{}},"0.3.0":{"name":"finalhandler","description":"Node.js final http responder","version":"0.3.0","author":{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},"license":"MIT","repository":{"type":"git","url":"https://github.com/pillarjs/finalhandler"},"dependencies":{"debug":"~2.0.0","escape-html":"1.0.1","on-finished":"~2.1.0"},"devDependencies":{"istanbul":"0.3.2","mocha":"~1.21.4","readable-stream":"~1.0.27","should":"~4.0.1","supertest":"~0.13.0"},"files":["LICENSE","HISTORY.md","index.js"],"engines":{"node":">= 0.8"},"scripts":{"test":"mocha --reporter spec --bail --check-leaks test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"gitHead":"8cc4b0afde5ab1fdb1f42bcdf80fd1d9dd4e1528","bugs":{"url":"https://github.com/pillarjs/finalhandler/issues"},"homepage":"https://github.com/pillarjs/finalhandler","_id":"finalhandler@0.3.0","_shasum":"581afe4d28da13491487f1c0ef9c29ef883e6e59","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"dist":{"shasum":"581afe4d28da13491487f1c0ef9c29ef883e6e59","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/finalhandler/-/finalhandler-0.3.0.tgz"},"directories":{}},"0.3.1":{"name":"finalhandler","description":"Node.js final http responder","version":"0.3.1","author":{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},"license":"MIT","repository":{"type":"git","url":"https://github.com/pillarjs/finalhandler"},"dependencies":{"debug":"~2.1.0","escape-html":"1.0.1","on-finished":"~2.1.0"},"devDependencies":{"istanbul":"0.3.2","mocha":"~1.21.5","readable-stream":"~1.0.33","should":"~4.0.1","supertest":"~0.14.0"},"files":["LICENSE","HISTORY.md","index.js"],"engines":{"node":">= 0.8"},"scripts":{"test":"mocha --reporter spec --bail --check-leaks test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"gitHead":"d7ad6d8d66316d88774171f606b78f386eadce85","bugs":{"url":"https://github.com/pillarjs/finalhandler/issues"},"homepage":"https://github.com/pillarjs/finalhandler","_id":"finalhandler@0.3.1","_shasum":"ffda7643228678c6b088c89421a8381663961808","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"dist":{"shasum":"ffda7643228678c6b088c89421a8381663961808","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/finalhandler/-/finalhandler-0.3.1.tgz"},"directories":{}},"0.3.2":{"name":"finalhandler","description":"Node.js final http responder","version":"0.3.2","author":{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},"license":"MIT","repository":{"type":"git","url":"https://github.com/pillarjs/finalhandler"},"dependencies":{"debug":"~2.1.0","escape-html":"1.0.1","on-finished":"~2.1.1"},"devDependencies":{"istanbul":"0.3.2","mocha":"~2.0.0","readable-stream":"~1.0.33","should":"~4.1.0","supertest":"~0.14.0"},"files":["LICENSE","HISTORY.md","index.js"],"engines":{"node":">= 0.8"},"scripts":{"test":"mocha --reporter spec --bail --check-leaks test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"gitHead":"1dc292faf576fade3b0218caab39060f4da5fe9c","bugs":{"url":"https://github.com/pillarjs/finalhandler/issues"},"homepage":"https://github.com/pillarjs/finalhandler","_id":"finalhandler@0.3.2","_shasum":"7b389b0fd3647a6f90bd564e22624bf8a4a77fb5","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"dist":{"shasum":"7b389b0fd3647a6f90bd564e22624bf8a4a77fb5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/finalhandler/-/finalhandler-0.3.2.tgz"},"directories":{}},"0.3.3":{"name":"finalhandler","description":"Node.js final http responder","version":"0.3.3","author":{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},"license":"MIT","repository":{"type":"git","url":"https://github.com/pillarjs/finalhandler"},"dependencies":{"debug":"~2.1.1","escape-html":"1.0.1","on-finished":"~2.2.0"},"devDependencies":{"istanbul":"0.3.5","mocha":"~2.1.0","readable-stream":"~1.0.33","supertest":"~0.15.0"},"files":["LICENSE","HISTORY.md","index.js"],"engines":{"node":">= 0.8"},"scripts":{"test":"mocha --reporter spec --bail --check-leaks test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"gitHead":"dfce5042f996ba93ac85b9282e6d1cae1561acc6","bugs":{"url":"https://github.com/pillarjs/finalhandler/issues"},"homepage":"https://github.com/pillarjs/finalhandler","_id":"finalhandler@0.3.3","_shasum":"b1a09aa1e6a607b3541669b09bcb727f460cd426","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"dist":{"shasum":"b1a09aa1e6a607b3541669b09bcb727f460cd426","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/finalhandler/-/finalhandler-0.3.3.tgz"},"directories":{}},"0.3.4":{"name":"finalhandler","description":"Node.js final http responder","version":"0.3.4","author":{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},"license":"MIT","repository":{"type":"git","url":"https://github.com/pillarjs/finalhandler"},"dependencies":{"debug":"~2.1.3","escape-html":"1.0.1","on-finished":"~2.2.0"},"devDependencies":{"istanbul":"0.3.8","mocha":"~2.2.1","readable-stream":"~1.0.33","supertest":"~0.15.0"},"files":["LICENSE","HISTORY.md","index.js"],"engines":{"node":">= 0.8"},"scripts":{"test":"mocha --reporter spec --bail --check-leaks test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"gitHead":"63e18603c11effcacc06676f6fefbf270795459a","bugs":{"url":"https://github.com/pillarjs/finalhandler/issues"},"homepage":"https://github.com/pillarjs/finalhandler","_id":"finalhandler@0.3.4","_shasum":"4787d3573d079ae8b07536f26b0b911ebaf2a2ac","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"dist":{"shasum":"4787d3573d079ae8b07536f26b0b911ebaf2a2ac","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/finalhandler/-/finalhandler-0.3.4.tgz"},"directories":{}},"0.3.5":{"name":"finalhandler","description":"Node.js final http responder","version":"0.3.5","author":{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},"license":"MIT","repository":{"type":"git","url":"https://github.com/pillarjs/finalhandler"},"dependencies":{"debug":"~2.1.3","escape-html":"1.0.1","on-finished":"~2.2.1"},"devDependencies":{"istanbul":"0.3.9","mocha":"~2.2.4","readable-stream":"~1.0.33","supertest":"~0.15.0"},"files":["LICENSE","HISTORY.md","index.js"],"engines":{"node":">= 0.8"},"scripts":{"test":"mocha --reporter spec --bail --check-leaks test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"gitHead":"618ff86e01ca5b8eb2f204ba1f322f65896c1455","bugs":{"url":"https://github.com/pillarjs/finalhandler/issues"},"homepage":"https://github.com/pillarjs/finalhandler","_id":"finalhandler@0.3.5","_shasum":"0d1bf5dfcb5f77d073a402aabe5f7a8a90413721","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"dist":{"shasum":"0d1bf5dfcb5f77d073a402aabe5f7a8a90413721","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/finalhandler/-/finalhandler-0.3.5.tgz"},"directories":{}},"0.3.6":{"name":"finalhandler","description":"Node.js final http responder","version":"0.3.6","author":{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},"license":"MIT","repository":{"type":"git","url":"https://github.com/pillarjs/finalhandler"},"dependencies":{"debug":"~2.2.0","escape-html":"1.0.1","on-finished":"~2.2.1"},"devDependencies":{"istanbul":"0.3.9","mocha":"~2.2.4","readable-stream":"~1.0.33","supertest":"~0.15.0"},"files":["LICENSE","HISTORY.md","index.js"],"engines":{"node":">= 0.8"},"scripts":{"test":"mocha --reporter spec --bail --check-leaks test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"gitHead":"10c8b938d00acdd5a2bdc6fbd912fb24ffd9f328","bugs":{"url":"https://github.com/pillarjs/finalhandler/issues"},"homepage":"https://github.com/pillarjs/finalhandler","_id":"finalhandler@0.3.6","_shasum":"daf9c4161b1b06e001466b1411dfdb6973be138b","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"}],"dist":{"shasum":"daf9c4161b1b06e001466b1411dfdb6973be138b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/finalhandler/-/finalhandler-0.3.6.tgz"},"directories":{}},"0.4.0":{"name":"finalhandler","description":"Node.js final http responder","version":"0.4.0","author":{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},"license":"MIT","repository":{"type":"git","url":"https://github.com/pillarjs/finalhandler"},"dependencies":{"debug":"~2.2.0","escape-html":"1.0.2","on-finished":"~2.3.0","unpipe":"~1.0.0"},"devDependencies":{"istanbul":"0.3.15","mocha":"2.2.5","readable-stream":"2.0.0","supertest":"1.0.1"},"files":["LICENSE","HISTORY.md","index.js"],"engines":{"node":">= 0.8"},"scripts":{"test":"mocha --reporter spec --bail --check-leaks test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"gitHead":"fe4e4de9ebb0f3831493ad75119ee6ba40542853","bugs":{"url":"https://github.com/pillarjs/finalhandler/issues"},"homepage":"https://github.com/pillarjs/finalhandler","_id":"finalhandler@0.4.0","_shasum":"965a52d9e8d05d2b857548541fb89b53a2497d9b","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"}],"dist":{"shasum":"965a52d9e8d05d2b857548541fb89b53a2497d9b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/finalhandler/-/finalhandler-0.4.0.tgz"},"directories":{}},"0.4.1":{"name":"finalhandler","description":"Node.js final http responder","version":"0.4.1","author":{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},"license":"MIT","repository":{"type":"git","url":"https://github.com/pillarjs/finalhandler"},"dependencies":{"debug":"~2.2.0","escape-html":"~1.0.3","on-finished":"~2.3.0","unpipe":"~1.0.0"},"devDependencies":{"istanbul":"0.4.1","mocha":"2.3.4","readable-stream":"2.0.4","supertest":"1.1.0"},"files":["LICENSE","HISTORY.md","index.js"],"engines":{"node":">= 0.8"},"scripts":{"test":"mocha --reporter spec --bail --check-leaks test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"gitHead":"ac2036774059eb93dbac8475580e52433204d4d4","bugs":{"url":"https://github.com/pillarjs/finalhandler/issues"},"homepage":"https://github.com/pillarjs/finalhandler","_id":"finalhandler@0.4.1","_shasum":"85a17c6c59a94717d262d61230d4b0ebe3d4a14d","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"}],"dist":{"shasum":"85a17c6c59a94717d262d61230d4b0ebe3d4a14d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/finalhandler/-/finalhandler-0.4.1.tgz"},"directories":{}},"0.5.0":{"name":"finalhandler","description":"Node.js final http responder","version":"0.5.0","author":{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},"license":"MIT","repository":{"type":"git","url":"https://github.com/pillarjs/finalhandler"},"dependencies":{"debug":"~2.2.0","escape-html":"~1.0.3","on-finished":"~2.3.0","statuses":"~1.3.0","unpipe":"~1.0.0"},"devDependencies":{"eslint":"2.12.0","eslint-config-standard":"5.3.1","eslint-plugin-promise":"1.3.2","eslint-plugin-standard":"1.3.2","istanbul":"0.4.3","mocha":"2.5.3","readable-stream":"2.1.2","supertest":"1.1.0"},"files":["LICENSE","HISTORY.md","index.js"],"engines":{"node":">= 0.8"},"scripts":{"lint":"eslint **/*.js","test":"mocha --reporter spec --bail --check-leaks test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"gitHead":"15cc543eb87dd0e2f29e931d86816a6eb348c573","bugs":{"url":"https://github.com/pillarjs/finalhandler/issues"},"homepage":"https://github.com/pillarjs/finalhandler","_id":"finalhandler@0.5.0","_shasum":"e9508abece9b6dba871a6942a1d7911b91911ac7","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"}],"dist":{"shasum":"e9508abece9b6dba871a6942a1d7911b91911ac7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/finalhandler/-/finalhandler-0.5.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/finalhandler-0.5.0.tgz_1466028655505_0.19758180482313037"},"directories":{}},"0.5.1":{"name":"finalhandler","description":"Node.js final http responder","version":"0.5.1","author":{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},"license":"MIT","repository":{"type":"git","url":"https://github.com/pillarjs/finalhandler"},"dependencies":{"debug":"~2.2.0","escape-html":"~1.0.3","on-finished":"~2.3.0","statuses":"~1.3.1","unpipe":"~1.0.0"},"devDependencies":{"eslint":"3.10.0","eslint-config-standard":"6.2.1","eslint-plugin-markdown":"1.0.0-beta.3","eslint-plugin-promise":"3.3.2","eslint-plugin-standard":"2.0.1","istanbul":"0.4.5","mocha":"2.5.3","readable-stream":"2.1.2","supertest":"1.1.0"},"files":["LICENSE","HISTORY.md","index.js"],"engines":{"node":">= 0.8"},"scripts":{"lint":"eslint --plugin markdown --ext js,md .","test":"mocha --reporter spec --bail --check-leaks test/","test-ci":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/"},"gitHead":"ae6137a81049eecb2d57341b1a9c4efed46a25da","bugs":{"url":"https://github.com/pillarjs/finalhandler/issues"},"homepage":"https://github.com/pillarjs/finalhandler","_id":"finalhandler@0.5.1","_shasum":"2c400d8d4530935bc232549c5fa385ec07de6fcd","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"}],"dist":{"shasum":"2c400d8d4530935bc232549c5fa385ec07de6fcd","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/finalhandler/-/finalhandler-0.5.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/finalhandler-0.5.1.tgz_1479018213560_0.8304649770725518"},"directories":{}},"1.0.0":{"name":"finalhandler","description":"Node.js final http responder","version":"1.0.0","author":{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/pillarjs/finalhandler.git"},"dependencies":{"debug":"2.6.1","encodeurl":"~1.0.1","escape-html":"~1.0.3","on-finished":"~2.3.0","parseurl":"~1.3.1","statuses":"~1.3.1","unpipe":"~1.0.0"},"devDependencies":{"eslint":"3.15.0","eslint-config-standard":"6.2.1","eslint-plugin-markdown":"1.0.0-beta.3","eslint-plugin-promise":"3.3.2","eslint-plugin-standard":"2.0.1","istanbul":"0.4.5","mocha":"2.5.3","readable-stream":"2.1.2","supertest":"1.1.0"},"files":["LICENSE","HISTORY.md","index.js"],"engines":{"node":">= 0.8"},"scripts":{"lint":"eslint --plugin markdown --ext js,md .","test":"mocha --reporter spec --bail --check-leaks test/","test-ci":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/"},"gitHead":"6e024b1139202f69a537884ea755a0bf1bb72d69","bugs":{"url":"https://github.com/pillarjs/finalhandler/issues"},"homepage":"https://github.com/pillarjs/finalhandler#readme","_id":"finalhandler@1.0.0","_shasum":"b5691c2c0912092f18ac23e9416bde5cd7dc6755","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.7.3","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"dist":{"shasum":"b5691c2c0912092f18ac23e9416bde5cd7dc6755","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/finalhandler/-/finalhandler-1.0.0.tgz"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/finalhandler-1.0.0.tgz_1487228805174_0.0024696807377040386"},"directories":{}},"1.0.1":{"name":"finalhandler","description":"Node.js final http responder","version":"1.0.1","author":{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/pillarjs/finalhandler.git"},"dependencies":{"debug":"2.6.3","encodeurl":"~1.0.1","escape-html":"~1.0.3","on-finished":"~2.3.0","parseurl":"~1.3.1","statuses":"~1.3.1","unpipe":"~1.0.0"},"devDependencies":{"eslint":"3.18.0","eslint-config-standard":"7.1.0","eslint-plugin-markdown":"1.0.0-beta.4","eslint-plugin-promise":"3.5.0","eslint-plugin-standard":"2.1.1","istanbul":"0.4.5","mocha":"2.5.3","readable-stream":"2.1.2","supertest":"1.1.0"},"files":["LICENSE","HISTORY.md","index.js"],"engines":{"node":">= 0.8"},"scripts":{"lint":"eslint --plugin markdown --ext js,md .","test":"mocha --reporter spec --bail --check-leaks test/","test-ci":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/"},"gitHead":"7643136085e8c178902a93d6ef43ad42cd3936f1","bugs":{"url":"https://github.com/pillarjs/finalhandler/issues"},"homepage":"https://github.com/pillarjs/finalhandler#readme","_id":"finalhandler@1.0.1","_shasum":"bcd15d1689c0e5ed729b6f7f541a6df984117db8","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.7.3","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"dist":{"shasum":"bcd15d1689c0e5ed729b6f7f541a6df984117db8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/finalhandler/-/finalhandler-1.0.1.tgz"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/finalhandler-1.0.1.tgz_1490162581058_0.40150946634821594"},"directories":{}},"1.0.2":{"name":"finalhandler","description":"Node.js final http responder","version":"1.0.2","author":{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/pillarjs/finalhandler.git"},"dependencies":{"debug":"2.6.4","encodeurl":"~1.0.1","escape-html":"~1.0.3","on-finished":"~2.3.0","parseurl":"~1.3.1","statuses":"~1.3.1","unpipe":"~1.0.0"},"devDependencies":{"eslint":"3.19.0","eslint-config-standard":"10.2.1","eslint-plugin-import":"2.2.0","eslint-plugin-markdown":"1.0.0-beta.4","eslint-plugin-node":"4.2.2","eslint-plugin-promise":"3.5.0","eslint-plugin-standard":"3.0.1","istanbul":"0.4.5","mocha":"2.5.3","readable-stream":"2.2.9","safe-buffer":"5.0.1","supertest":"1.1.0"},"files":["LICENSE","HISTORY.md","index.js"],"engines":{"node":">= 0.8"},"scripts":{"lint":"eslint --plugin markdown --ext js,md .","test":"mocha --reporter spec --bail --check-leaks test/","test-ci":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/"},"gitHead":"fdc51081ce2747d28855f4d6ac9d418379f509ed","bugs":{"url":"https://github.com/pillarjs/finalhandler/issues"},"homepage":"https://github.com/pillarjs/finalhandler#readme","_id":"finalhandler@1.0.2","_shasum":"d0e36f9dbc557f2de14423df6261889e9d60c93a","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.7.3","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"dist":{"shasum":"d0e36f9dbc557f2de14423df6261889e9d60c93a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/finalhandler/-/finalhandler-1.0.2.tgz"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/finalhandler-1.0.2.tgz_1492903233024_0.34017785592004657"},"directories":{}},"1.0.3":{"name":"finalhandler","description":"Node.js final http responder","version":"1.0.3","author":{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/pillarjs/finalhandler.git"},"dependencies":{"debug":"2.6.7","encodeurl":"~1.0.1","escape-html":"~1.0.3","on-finished":"~2.3.0","parseurl":"~1.3.1","statuses":"~1.3.1","unpipe":"~1.0.0"},"devDependencies":{"eslint":"3.19.0","eslint-config-standard":"10.2.1","eslint-plugin-import":"2.2.0","eslint-plugin-markdown":"1.0.0-beta.6","eslint-plugin-node":"4.2.2","eslint-plugin-promise":"3.5.0","eslint-plugin-standard":"3.0.1","istanbul":"0.4.5","mocha":"2.5.3","readable-stream":"2.2.9","safe-buffer":"5.0.1","supertest":"1.1.0"},"files":["LICENSE","HISTORY.md","index.js"],"engines":{"node":">= 0.8"},"scripts":{"lint":"eslint --plugin markdown --ext js,md .","test":"mocha --reporter spec --bail --check-leaks test/","test-ci":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/"},"gitHead":"0425ae63bf44a661354baf6b37eebb01909cd78d","bugs":{"url":"https://github.com/pillarjs/finalhandler/issues"},"homepage":"https://github.com/pillarjs/finalhandler#readme","_id":"finalhandler@1.0.3","_shasum":"ef47e77950e999780e86022a560e3217e0d0cc89","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.3","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"dist":{"shasum":"ef47e77950e999780e86022a560e3217e0d0cc89","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/finalhandler/-/finalhandler-1.0.3.tgz"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/finalhandler-1.0.3.tgz_1494997503461_0.08480599173344672"},"directories":{}}},"name":"finalhandler","time":{"modified":"2017-06-14T08:15:30.896Z","created":"2014-06-06T02:46:23.972Z","0.0.0":"2014-06-06T02:46:23.972Z","0.0.1":"2014-06-17T03:16:02.504Z","0.0.2":"2014-06-19T22:45:27.016Z","0.0.3":"2014-07-12T02:55:27.900Z","0.1.0":"2014-07-17T00:46:33.245Z","0.2.0":"2014-09-04T02:47:49.096Z","0.3.0":"2014-09-18T08:05:47.995Z","0.3.1":"2014-10-17T03:04:23.148Z","0.3.2":"2014-10-23T03:43:37.882Z","0.3.3":"2015-01-02T03:41:17.238Z","0.3.4":"2015-03-16T01:50:44.350Z","0.3.5":"2015-04-23T02:25:52.619Z","0.3.6":"2015-05-12T03:53:24.990Z","0.4.0":"2015-06-14T21:15:57.149Z","0.4.1":"2015-12-02T18:07:45.449Z","0.5.0":"2016-06-15T22:10:57.784Z","0.5.1":"2016-11-13T06:23:35.753Z","1.0.0":"2017-02-16T07:06:45.834Z","1.0.1":"2017-03-22T06:03:01.761Z","1.0.2":"2017-04-22T23:20:33.617Z","1.0.3":"2017-05-17T05:05:05.352Z"},"readmeFilename":"README.md","homepage":"https://github.com/pillarjs/finalhandler#readme"}