I\'m test driving the ES7 async/await proposal using this module to emulate it. I\'m trying to make knex.js transactions play well with them, as a starting point.
Ex
You can try this:
async function() { await knex.transaction( async (trx) => { ... trx.commit(); } }