Skip to content

Instantly share code, notes, and snippets.

@chrvadala
Created July 29, 2016 08:53
Show Gist options
  • Save chrvadala/a8113b8120488210d3000873c149055e to your computer and use it in GitHub Desktop.
Save chrvadala/a8113b8120488210d3000873c149055e to your computer and use it in GitHub Desktop.
KOA.js use Promise instead of async/await or yield
koa.use((ctx, next) => new Promise((resolve, reject) => {
ctx.body = "hello"
next().then(_ => {
resolve();
});
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment