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

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.1.3
    195
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.1.3
    195
  • 0.1.2
    1
  • 0.1.1
    2
  • 0.1.0
    1

Package Sidebar

Install

npm i express-async

Weekly Downloads

199

Version

0.1.3

License

CC0-1.0

Last publish

Collaborators

  • izaakschroeder