Express Init
This Node.JS utility module initializes Express 4.x middleware and calls back when initialization is complete. This allows
your middleware to perform some asynchronous initialization before the server starts.
Usage
Your middleware must implement the init
function, which accepts two parameters: the app
instance and a callback
.
When your middleware is finished initializing, invoke the callback with an error if one occurred. A middleware's init
function will only be called once, even if the middleware is used multiple times in the same app.
var initialize = require('express-init');
var middleware = function (req, res, next) {
next()
};
middleware.init = function(app, callback) {
callback();
};
var app = express();
app.use(middleware);
app.get('/', function(req, res) {
req.send('ok');
});
initialize(app, function(err) {
if (err)
throw new Error(err);
app.listen(3000);
});