Skip to content

Instantly share code, notes, and snippets.

@govorov
Created October 7, 2017 01:44
Show Gist options
  • Save govorov/e29b1d9b00003a3ba8f2e1394fdbfa7a to your computer and use it in GitHub Desktop.
Save govorov/e29b1d9b00003a3ba8f2e1394fdbfa7a to your computer and use it in GitHub Desktop.
import * as Koa from 'koa';
const app = new Koa();
app.use(async ctx => {
ctx.body = "It works!\n";
});
app.listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment