Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@santimendoza/express-router-group

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@santimendoza/express-router-group

Create route groups in expressjs

  • 0.1.5-beta.1
  • beta
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

express-router-group

Create route groups in express.js

Quick start

  1. npm i express-router-group
  2. Add require('express-router-group) in the first line of your route files.
  3. Use router.group('/path', () => {}) to start grouping routes.

How to use

For prefixing all routes with a certain path, you use the group method added to the express router, as the following example:

require('express-router-group');
const router = express.Router();
router.group("/api/v1", router => {
    router.get("/login", loginController.store); // /api/v1/login 
});

In case you don't want to add a prefix but still need to group certain routes you can leave the first parameter and go straight for the function:

require('express-router-group');
const router = express.Router();
 
router.group(router => {
    router.use(middleware);
});

Adding middlewares

You can also add middlewares to route groups:

require('express-router-group');
const router = express.Router();
const myMiddleware = function(req, res, next){
    console.log("Applying middleware");
    return next();
}
router.group("/api/v1", myMiddleware, router => {
    router.get("/login", loginController.store); // /api/v1/login 
});

Then everytime you go to a route in the /api/v1 group, it will console log "Applying middleware".

Keywords

FAQs

Package last updated on 19 Jan 2023

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc