Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 694 Bytes

readme.md

File metadata and controls

32 lines (21 loc) · 694 Bytes

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