0.1.3 • Published 9 years ago

express-async v0.1.3

Weekly downloads
61
License
CC0-1.0
Repository
github
Last release
9 years ago

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