jrf0110 / stdm

Standard Middleware for Express

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Parallel middleware

jrf0110 opened this issue · comments

app.get( '/users'
, m.parallel(
    function( req, res, next ){ setTimeout( next, 1000 ); }
  , function( req, res, next ){ setTimeout( next, 800 ); }
  )
, m.view( 'users', db.users )
);