express-then
v1.0.3
Published
Express handlers with promise support.
Downloads
14
Readme
express-then
Express handlers with promise support.
Example
const then = require('express-then')
app.get('/', then(async (req, res) => {
await foo()
await bar()
res.end()
}))