npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

koa-x-router

v0.0.13

Published

`koa-x-router` is a library that extends the functionality of `koa-router` by providing validation and automatic API documentation features. It simplifies the process of defining routes, validating request data, and generating API documentation.

Downloads

1,325

Readme

koa-x-router

koa-x-router is a library that extends the functionality of @koa/router by providing validation and automatic API documentation features. It simplifies the process of defining routes, validating request data, and generating API documentation.

Features

  • Validation: With koa-x-router, you can perform validation using various validation libraries. The library provides adapters such as JoiAdaptor and YupAdaptor that allow you to define validation schemas using popular validation libraries like Joi or Yup. You can also implement your own custom adapter by implementing the XRouterAdaptor interface.

  • Automatic API Documentation: koa-x-router automatically generates API documentation based on your route definitions. It extracts information about route paths, request methods, request/response data structures, and validation rules. The generated documentation can be accessed through an endpoint, making it convenient for developers to understand and consume your API.

Installation

You can install koa-x-router using npm:

npm install koa @koa/router koa-x-router joi

with TypeScript

npm install @types/koa @types/koa__router -D

Usage

Demo

To use koa-x-router, import it and initialize it with an instance of @koa/router. Here's a basic example:

import Koa from "koa";
import bodyParser from "koa-bodyparser";
import { Router, JoiAdaptor } from "koa-x-router";

const app = new Koa();
const router = new Router({
  adaptors: [JoiAdaptor], // <== Important!
});
const docRouter = new Router();

// Define a route with validation
router.add({
  method: "get",
  path: "/users",
  validate: {
    query: Joi.object({
      name: Joi.string(),
    }),
    output: {
      200: {
        body: Joi.array().items(
          Joi.object({
            name: Joi.string().required(),
            age: Joi.number().positive().required(),
          })
        ),
      },
    },
  },
  handler: async (ctx) => {
    // code...
  },
});

docRouter.get("/", (ctx) => {
  ctx.body = `<!DOCTYPE html>
  <html>
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>API Documentation</title>
    <link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:300,400,700" rel="stylesheet">
    <style>body{margin: 0;padding: 0;}</style>
  </head>
  <body>
    <redoc spec-url='/openapi.json' lazy-rendering></redoc>
    <script src="https://cdn.jsdelivr.net/npm/redoc@next/bundles/redoc.standalone.js"></script>
  </body>
  </html>`;
});

docRouter.get("/openapi.json", (ctx) => {
  ctx.body = router.generateOpenApiSpecJson({
    info: {
      title: "koa-x-router Demo API Docs",
      version: "1.0.0",
    },
  });
});

app.use(docRouter.routes());
app.use(bodyParser());
app.use(router.routes());

app.listen(3000, () => {
  console.log("Server listening on port 3000");
});

You can also implement your custom adapter by implementing the XRouterAdaptor interface. This allows you to use your preferred validation library for route validation.

Contributing

Contributions are welcome! If you have any suggestions, bug reports, or feature requests, please open an issue.

License

This project is licensed under the Apache License 2.0.