Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
socks-routes
Advanced tools
A basic package for cleaning up some boilerplate behind express routes.
A basic package for cleaning up some boilerplate behind express routes.
Usage is very simple! When initializing your app, you should add this to your express code:
var express = require('express');
var path = require('path');
[...] // Require your various other modules here
var routes = require('socks-routes');
var app = express();
[...] // Set up your app here, such as sessions and other middleware
// Load the routes
routes.loadDir(app, path.join(__dirname, 'routes'));
[...] // Any final routes and middleware, and app start-up
For the routes themselves, I've boiled it down to a one-liner of boilerplate:
// Simple one-line drop in replacement for express's default route
// boilerplate, that specifies the route for `/`
var router = module.exports = require('socks-routes').Route('/');
// The rest is the same as express's default route skeleton
/* GET home page. */
router.get('/', function(req, res, next) {
res.render('index', { title: 'Express' });
});
Note that, as with bare express routes, you can specify multiple routers that can handle the same route if you feel that certain aspects of your app make more sense in separate files.
Socks-Routes will grab all the javascript routes in ./routes
and its
subdirectories and load them into the app. No more having to manually require
and app.use()
each and every route, they and their relevant information are
tucked away in one convenient file for you to modify as your needs change.
FAQs
A basic package for cleaning up some boilerplate behind express routes.
We found that socks-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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.