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

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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