Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ako-deno/ako

Expressive HTTP middleware framework for deno using async functions. Aiming to port Koa to Deno.
https://github.com/ako-deno/ako

ako deno framework koa type typescript web

Last synced: 3 months ago
JSON representation

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

Awesome Lists containing this project

README

        

# ako

![ci](https://github.com/ako-deno/ako/workflows/ci/badge.svg?branch=master)
[![HitCount](http://hits.dwyl.com/ako-deno/ako.svg)](http://hits.dwyl.com/ako-deno/ako)

Expressive HTTP middleware framework for deno using async functions. Aiming to port [Koa](https://github.com/koajs/koa) to Deno.

What is ako?
=====

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

# Usage

```js
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](./LICENSE)