express-init

1.1.2 • Public • Published

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.

Build Status

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) {
  // ... the stuff dreams are made of
  next()
};
 
middleware.init = function(app, callback) {
  // initialize your middleware and callback when ready
  callback();
};
 
var app = express();
app.use(middleware);
app.get('/', function(req, res) {
  req.send('ok');
});
 
// use this module to initialize the app
// each middleware init function will be called serially
initialize(app, function(err) {
  if (err)
    throw new Error(err);
 
  // the middleware is initialized now, so start the server
  app.listen(3000);
});

Readme

Keywords

none

Package Sidebar

Install

npm i express-init

Weekly Downloads

272

Version

1.1.2

License

MIT

Unpacked Size

3.2 kB

Total Files

3

Last publish

Collaborators

  • jevensen
  • daniel.gershin
  • celolb
  • rafael.uchoa
  • jarrodbmiller
  • terbepetra
  • matteo.pandolfi
  • ericyd_ap
  • ivisilva
  • henriquelaki
  • carlo.anselmi
  • stefano.santonocito
  • carlhannusch
  • robdll
  • jorgemarrufo
  • apshoebkhan
  • samullen-ap
  • dpjones09
  • josevsp
  • johnb2
  • rickymcmurtrey
  • jgrayson03
  • apadmin
  • alexkwolfe
  • kellym
  • cgrayson
  • steveodom
  • ap_luisferreira
  • alisimbanegavi
  • benjmartin
  • sammarten
  • gabriel.roldan.ap
  • stwf-ap