Socket
Socket
Sign inDemoInstall

express-route-grouping

Package Overview
Dependencies
64
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    express-route-grouping

Easy route grouping for Express JS with resource api model.


Version published
Weekly downloads
97
decreased by-33.56%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

NPM version Build Status Coverage Status Conventional Commits Standard Version

Express JS Route Grouping

Although there are many express js route grouping packages, there is no grouping package with dynamic parameter holders feature. Beside Resource API Model approach has been integrated in this package basically.

Install

NPM

$ npm i express-route-grouping --save

Yarn

$ yarn add express-route-grouping

Basic Usage

import { Router } from 'express';
import RouteGroup from 'express-route-grouping';

const root = new RouteGroup('/', Router());

root.group('blogs', blogs => {
  // -> /blogs
  blogs.get('/', () => {});

  blogs.group(':blogId', blog => {
    // -> /blogs/:blogId
    blog.get('/', (req, res) => {});

    // -> /blogs/:blogId
    blog.post('/', (req, res) => {});

    // -> /blogs/:blogId/comments
    blog.get('comments', (req, res) => {});

    // -> /blogs/:blogId/likes
    blog.get('likes', (req, res) => {});
  });
});

app.use('/', root.export());

Not: You can nest all routes unlimitedly as above.

Resource API Model

Resource api modeling is a approach to standarts some generic http operations.

Let's see the examples:

import { Router } from 'express';
import RouteGroup from 'express-route-grouping';

const root = new RouteGroup('/', Router());

root.group('products', products => {
  products.resource({
    handlers: {
      // GET: /products
      index(req, res) {},

      // GET: /products/:productId
      find(req, res) {},

      // POST: /products
      create(req, res) {},

      // PUT: /products/:productId
      update(req, res) {},

      // PATCH: /products/:productId
      patch(req, res) {},

      // DELETE: /products/:productId
      delete(req, res) {},
    },
  });
});

app.use('/', root.export());

You can also set a class instance including resource methods.

class BlogController {
  // GET: /products
  index = (req, res) => {};

  // GET: /products/:productId
  find = (req, res) => {};

  // POST: /products
  create = (req, res) => {};

  // PUT: /products/:productId
  update = (req, res) => {};

  // PATCH: /products/:productId
  patch = (req, res) => {};

  // DELETE: /products/:productId
  delete = (req, res) => {};
}
root.group('products', ({ resource }) => {
  resource({
    handlers: new BlogController(),
  });
});

app.use('/', root.export());

Note: You don't have to add all methods to handlers. It will consider only the defined ones.

Resource Options

NameTypeDescription
handlersFunction/Function[]This is main handler(s). It can pass multiple handlers.
beforeHandlersFunction[]Adds handlers to before main handlers.
afterHandlersFunction[]Adds handlers to after main handlers.

Nested Resource Model

import { Router } from 'express';
import RouteGroup from 'express-route-grouping';

const root = new RouteGroup('/', Router());

root.group('products', products => {
  products.resource({
    handlers: {
      // -> index: (GET: /products)
      // -> find: (GET: /products/:productId)
      // -> create: (POST: /products)
      // -> update: (PUT: /products/:productId)
      // -> patch: (PATCH: /products/:productId)
      // -> delete: (DELETE: /products/:productId)
    },
  });

  products.group('items', items => {
    items.resource({
      handlers: {
        // -> index: (GET: /products/:productId/items)
        // -> find: (GET: /products/:productId/items/:itemId)
        // -> create: (POST: /products/:productId/items)
        // -> update: (PUT: /products/:productId/items/:itemId)
        // -> patch: (PATCH: /products/:productId/items/:itemId)
        // -> delete: (DELETE: /products/:productId/items/:itemId)
      },
    });
  });
});

app.use('/', root.export());

Tests

$ npm test

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT

Keywords

FAQs

Last updated on 08 Feb 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc