koa-radix-router
v1.0.0
Published
Router middleware for koa, like koa-router but more faster
Downloads
4
Maintainers
Readme
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