1.0.0 • Published 7 years ago

koa-radix-router v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

koa-radix-router

Router middleware for koa, like koa-router but more faster

Installation

npm install koa-radix-router

Usage

import * as Koa from 'koa';
import { Route } from 'koa-radix-router';

const app = new Koa();
const router = new Router();

router.get('/hello', ctx => {
    ctx.body = 'world';
});

app
    .use(router.routes())
    .use(router.allowedMethods());

License

MIT