
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
express-convention-routes
Advanced tools
This package provides a simple way to define convention-based routes in a Node.js/Express application that are created based on a directory structure.
What's a convention-based Express route? It's a route that is dynamically generated and associated with a "controller" function without having to explicitly code the route yourself (i.e. you don't write code such as app.use('/foo', router)). express-convention-routes
creates routes automatically by parsing a convention-based folder structure such as the one below when the server first starts.
-controllers
-customers
-customers.controller.js
-api
-cart
-cart.controller.js
-index.controller.js
This allows application routes to be created without having to write any app.use() code to define the individual routes. Using the previous folder structure, express-convention-routes
would create the following routes (and associate them
with the appropriate "controller" functions):
/customers
/api/cart
/
Each folder contains a "controller" file that defines the functionality to run for the given route. For example, if you want a root route you'd add a file into the root controllers
folder (index.controller.js
for example). If you want an api/cart
route you'd create that folder structure under the controllers
folder (see the folder example above) and add a "controller" file such as cart.controller.js
into the api/cart
folder. You can name the controller
files anything you'd like and they can have as many HTTP actions (GET/POST/PUT/DELETE, etc.) in them as you want.
To get started perform the following steps:
Install the express-convention-routes
package locally:
npm install express-convention-routes
Create a controllers
folder at the root of your Express project.
To create a root (/) route, add an index.controller.js
file into the folder (you can name the file whatever you'd like). Put the following code into the file:
module.exports = function (router) {
router.get('/', function (req, res) {
res.end('Hello from root route!');
});
};
Note that if you'd like to use a controller class you can do that as well:
class IndexController {
constructor(router) {
router.get('/', this.get.bind(this));
}
get(req, res) {
res.render(__dirname + '/index');
}
}
module.exports = IndexController;
To create a /customers
route, create a subfolder under controllers
named customers
.
Add a customers.controller.js
file into the customers
folder (you can name the file anything you'd like):
module.exports = function (router) {
router.get('/', function (req, res) {
res.end('Hello from the /customers route!');
});
};
Once the routing folder structure is created, add the following code into your express server code (index.js, server.js, etc.) to load the routes automatically based on the folder structure in the "controllers" folder when the Express server starts:
var express = require('express');
var app = express();
var router = require('express-convention-routes');
router.load(app, {
// Defaults to "./controllers" but showing for example
routesDirectory: './controllers',
// Root directory where your server is running
rootDirectory: __dirname,
//Root url of partial convention routes ('/api/ for instance')
// Defaults to '/'
rootDirectory: '/',
// Do you want the created routes to be shown in the console?
logRoutes: true
});
Try out the included sample app by running the following commands:
npm install
npm start
The sample follows a feature-based approach where the controller and associated view are in the same folder (handlebars is used for the views in the sample). If you prefer the more traditional approach where all of the views live in the "views" folder you can simply move the .hbs files there into the proper folders.
I originally got the idea from ASP.NET MVC (as well as other MVC frameworks)and KrakenJS (http://krakenjs.com). These frameworks automate the process of creating routes so I wanted to do something similar with express-convention-routes
.
FAQs
Convention-based routing for Express
We found that express-convention-routes demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.