write services that attach to existing httpServer instances
npm install http-attach

This lets you implement functionality like socket.io's socketio.attach(httpServer)
js
var httpAttach = require('http-attach')function middleware (req, res, next) {
console.log('this middleware is neat & useful')
next()
}
middleware.attach = function (httpServer) {
httpAttach(httpServer, middleware)
}
module.exports = middleware
`httpServer should be an HttpServer or HttpsServer instance.This replaces the existing
request event handler so you can additional control point for your program logic. You can yield to the existing handler by calling the next() function you get as the third argument, like connect-style middleware.If there is no existing request handler, calling
next()` will end the request with a 404 status code.$ npm install http-attach
From package root:
$ npm install
$ npm test
- jden
Apache 2.0. (c) 2016 Zendesk, Inc. See LICENSE.md