
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
express-route-refresh
Advanced tools


express-route-refresh reload routes in your express app without restarting the process, just following a simple pattern.
You can restart a URL composed by a Router, that is exported by a unique file. Let's see an example.
'use strict';
var express = require('express');
var router = express.Router();
router.get('/', function API(req, res, next) {
setTimeout(function() {
res.send('ok\n');
}, 10000);
});
module.exports = router;
var refreshable = require("express-route-refresh");
module.exports = function(app) {
var refresh_middleware = [
refreshable(app, '/api', './api.js')
];
// now /api is registered
// you can refresh just one
app.use('/refresh', function(req, res, next) {
// notice: require is synchronous... so this will be!!
refresh_middleware.forEach(function(v) {
v(); // do not send params if you are going to refresh more than one
});
res.send('ok');
});
}
var express = require('express');
// Setup server
var app = express();
var server = require('http').createServer(app);
require("routes.js")(app);
// Start server
server.listen(8080, '0.0.0.0', function () {
console.log('Express server listening on %d, in %s mode', 8080, app.get('env'));
});
One file (export router) - One route.
If your jsfile do anything fancy that is not related to export a Router. It could not work...
Keep it simple, just export a router and everything will be fine :)
It's tested with express 4.0.
express do not expose any API to allow middlewares manipulation.
I did it modifying internal variables in express application in particular: _router.stack,
I will be happy to support any new version in the way or past if needed/requested.
Supported versions:
var refresh_latest = require("express-route-refresh"), // actually are the same
refresh_v400 = require("express-route-refresh").v400;
MIT
FAQs
Refesh express router (routes) without restarting the process
We found that express-route-refresh 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.