Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

express-init

Package Overview
Dependencies
Maintainers
15
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

express-init

Initialize express middleware

  • 1.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
63
decreased by-48.36%
Maintainers
15
Weekly downloads
 
Created
Source

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);
});

FAQs

Package last updated on 27 Feb 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc