Skip to content

Instantly share code, notes, and snippets.

@amandeepmittal
Created October 4, 2018 12:35
Show Gist options
  • Save amandeepmittal/e99976a0ae3163d31b2ea39f9fd7cb1d to your computer and use it in GitHub Desktop.
Save amandeepmittal/e99976a0ae3163d31b2ea39f9fd7cb1d to your computer and use it in GitHub Desktop.
// app.js
const Koa = require('koa');
const app = new Koa();
// Our First Route
app.use(async ctx => {
ctx.body = 'Hello World';
});
// Bootstrap the server
app.listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment