Getting started :

import { Application } from "<https://deno.land/x/oak/mod.ts>";

const app = new Application();

// (req & res) are contained in the ctx
app.use((ctx) => {
  ctx.response.body = "Hello World!";
});

await app.listen({ port: 8000 });