Skip to content
/ ako Public

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

License

Notifications You must be signed in to change notification settings

ako-deno/ako

Folders and files

NameName
Last commit message
Last commit date

Latest commit

574e1c0 · Jul 16, 2020

History

52 Commits
Jul 12, 2020
Jul 16, 2020
Jul 16, 2020
May 16, 2020
Jun 8, 2020
May 16, 2020
Jun 9, 2020
May 15, 2020
Jul 16, 2020
Jul 16, 2020
Jul 12, 2020
Jun 15, 2020

Repository files navigation

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

About

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

Topics

Resources

License

Stars

Watchers

Forks