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-mount-routes

v1.0.1

Published

A koa package to load routes automatically from file system.

Downloads

5

Readme

koa-mount-routes

Build Status Coverage Status

NPM

A koa package to load routes automatically from file system.

Why?

Usage

After yarn add koa-mount-routes or npm install koa-mount-routes --save:

const path = require('path');
const Koa = require('koa');
const mountRoutes = require('koa-mount-routes');

const app = new Koa();
mountRoutes(app, path.join(__dirname, 'controllers'), {
  urlPrefix: '/api/v1/'
});

app.listen(3000, () => {
  console.log('Example app listening on port 3000!');
});

API Doc

mountRoutes(
  app, // A Koa2 instance;
  dirPath, // *absolute* path to the controllers dir
  {
    // optional parameters, and the 3rd param for this function is not required
    ignore, // files you want to ignore while scanning controllers dir such as index.js, see parameter options of module glob(https://github.com/isaacs/node-glob#options) for more infomation. Default value: ''
    urlPrefix, // prefix for routes, such as /api/v1/. Default value: '/'
    autoPlural, // whether apply pluralized file name as part of routes automatically. Default value: true
    allowedMethods // it is for koa-router, see https://github.com/alexmingoia/koa-router#routerallowedmethodsoptions--function for more information. As here, you can assign it to `[options]` parameter of koa-router#router.allowedMethods such as `{ throw: true }`. Default value: null, that's to say, we do not execute `app.use(router.allowedMethods());` by default.
  }
);

How to write Controllers

You must export an object whose keys are last part of routes and values are objects (or array) with HTTP method and handlers. For example:

// FileName: controllers/weibo.js

module.exports = {
  // when value is a function or an array of functions, the HTTP method would be default value GET
  '/': async ctx => {
    ctx.body = 'Weibos Index';
  },
  // also you can provide one more handlers with an array of functions: these handlers except last one are called middlerwares in Koa
  '/getArr': [
    async ctx => {
      ctx.body = 'GET for one more handlers';
    }
  ],
  // also you can make URL params
  '/:id': {
    // explicitly identifing an HTTP method can never be wrong
    get: ctx => {
      ctx.body = `get weibo: ${ctx.params.id}`;
    },
    post: async ctx => {
      ctx.body = `post weibo: ${ctx.params.id}`;
    }
  },
  // another example for usage of middlerwares
  '/temp': {
    delete: [
      async (ctx, next) => {
        ctx.myOwnVar = 'this is a middleware.';
        await next();
      },
      async ctx => {
        ctx.body = `${ctx.myOwnVar}ordinary api`;
      }
    ]
  }
};

At last, routes would be combined with ${urlPrefix} + ${pluralized file name of controllers} + ${identified keys}. Therefore, examples above would mount these routes:

GET - /api/v1/weibos/
GET - /api/v1/weibos/getArr
GET - /api/v1/weibos/:id
POST - /api/v1/weibos/:id
DELETE - /api/v1/weibos/temp

You are welcomed to review test.js and controllers dir in this project for more information of usage.

Attention

  1. As Koa does not provide a router by default, we pick koa-router as the router.

  2. You can use DEBUG=koa-mount-routes to get to know what routes are mounted.

Relatives

LICENSE

MIT