express-async

0.1.3 • Public • Published

express-async

Like async except for express.

build status coverage license version downloads

Methods

parallel

var async = require('express-async');
 
function mw1(req, res, next) {
 
}
 
function mw2(req, res, next) {
 
}
 
app.get('/', async.parallel(mw1, mw2));

serial

var async = require('express-async');
 
function mw1(req, res, next) {
 
}
 
function mw2(req, res, next) {
 
}
 
app.get('/', async.serial(mw1, mw2));

Dependencies (1)

Dev Dependencies (7)

Package Sidebar

Install

npm i express-async

Weekly Downloads

199

Version

0.1.3

License

CC0-1.0

Last publish

Collaborators

  • izaakschroeder