Skip to main content
Deno 2 is finally here 🎉️
Learn more

ako

ci HitCount

Expressive HTTP middleware framework for deno using async functions. Aiming to port Koa to Deno.

What is ako?

Well, 'node'.split('').sort().join('') derives deno, hence 'koa'.split('').sort().join('') derives ako.

Usage

import {
  Application,
} from "https://deno.land/x/ako/mod.ts";

const app = new Application();
app.use((ctx) => {
  ctx.body = "Hello Ako!";
});

app.listen({ port: 3000 });

License

MIT