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

express-modular-route-builder

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

express-modular-route-builder

Build express routes from directories

  • 0.7.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

express-modular-route-builder

Modular express server routing using directory structure

Node version contributions welcome

Installation

npm i --save express-modular-route-builder

Usage

Server

const path = require("path");

const express = require("express");
const buildRoutes = require("express-modular-route-builder");

const app = express();
// build routes from "./routes"
const routes = buildRoutes(path.resolve(__dirname, "./routes"));
// map all routes to root
app.use("/", (req, res, next) => routes(req, res, next));

// listen on port 3000
app.listen(3000, () => {
    console.log("Listening on port 3000!");
});

Route

Each route is represented as a JavaScript module(source, .js file). For instance, a directory structure like below would produce the following routes.

./routes
    | - ./test.js
    | - ./[id].js
    | - ./posts
        | - ./[id].js
        | - ./index.js
/test
/:id
/posts/(index)
/posts/:id

Method

Within each route modules, the exported object's properties are mapped to the corresponding method names.

module.exports = {
    get: async (req, res) => {...},
    post: async (req, res) => {...},
    delete: async (req, res) => {...}
}

Routing Rules

  • Files starting with _ are not routed.
    • ex) _database.js will remain unrouted-- It could be imported from other mapped routes.
  • Only files ending with .js are routed.
    • Static file serving is not supported yet. Pull requests are welcome.
  • Static routes(routes without params) have higher priority compared to dynamic routes(routes with params).
  • Files named index will be re-routed to its parent directory

License

MIT. Copyright (C) 2020-present by esinx (Eunsoo Shin).

HitCount

Keywords

FAQs

Package last updated on 03 Feb 2021

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