koa-fp-ts-router
Advanced tools
Weekly downloads
Readme
A Koa router middleware built on the top of fp-ts-routing
.
Note that these packages are peer dependencies of this library, which need to be installed separately.
npm
$ npm install koa-fp-ts-router
yarn
$ yarn add koa-fp-ts-router
import { end, lit, str } from 'fp-ts-routing';
import Koa from 'koa';
import { Router } from 'koa-fp-ts-router';
const app = new Koa();
// matches
const root = end; // `/`
const user = lit('users').then(str('id')).then(end); // `/users/:id`
// routes
const router = new Router();
router.get(root, function (ctx) {
ctx.body = 'Hello, world!';
});
router.get(user, function (ctx) {
ctx.body = `Hello, ${ctx.params.id}!`;
});
// Use the router middleware
app.use(router.routes());
app.listen(3000);
FAQs
A Koa router middleware built on the top of fp-ts-routing
The npm package koa-fp-ts-router receives a total of 451 weekly downloads. As such, koa-fp-ts-router popularity was classified as not popular.
We found that koa-fp-ts-router demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.