ExpressJS4 Async

app.post('/signup', async(req, res, next) => {
  async function runAsync () {
    await firstThing()
    await secondThing()
  }

  runAsync()
    .catch(next)
})
Maldestor95 at your service :)