Skip to content

Instantly share code, notes, and snippets.

@govorov
Created October 3, 2017 23:29
Show Gist options
  • Save govorov/b32fea85c0664275184cbcf652132f27 to your computer and use it in GitHub Desktop.
Save govorov/b32fea85c0664275184cbcf652132f27 to your computer and use it in GitHub Desktop.
import * as Koa from 'koa';
import { databaseInitializer } from 'initializers/database';
databaseInitializer().then(() => {
const app = new Koa();
app.use(async ctx => {
ctx.body = 'Works!';
});
app.listen(3000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment