![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
express-inject-middleware
Advanced tools
Inject stack of middlewares into given routes or middlewares.
Inject stack of middlewares into given routes or middlewares.
With this middleware, it can easily define express routes as a group that use one set of middlewares.
npm install express-inject-middleware --save
import express from 'express';
import { injectMiddleware } from 'express-inject-middleware';
const app = express();
const authMiddleware = (req, res, next) => {
// some auth logic...
};
const fooMiddleware = (req, res, next) => {
// some foo logic
}
const barMiddleware = (req, res, next) => {
// some bar logic
}
app.use(injectMiddleware(
[
authMiddleware,
fooMiddleware,
],
[
// Passing the app.[METHOD] as the parameter.
app.get('/secrets', (req, res, next) => res.send('secrets'));
// Mount barMiddleware itself
app.post('/secrets', barMiddleware, (req, res, next) => res.send('ok'));
],
));
Will become...
app.get('/secrets', authMiddleware, fooMiddleware, (req, res, next) => res.send('secrets'));
app.post('/secrets', authMiddleware, fooMiddleware, barMiddleware, (req, res, next) => res.send('secrets'));
import express from 'express';
import { injectMiddleware } from 'express-inject-middleware';
const app = express();
const router = express.Router();
const authMiddleware = (req, res, next) => {
// some auth logic...
};
const fooMiddleware = (req, res, next) => {
// some foo logic
}
app.use(injectMiddleware(
[
authMiddleware,
fooMiddleware,
],
[
// Passing the router.[METHOD] as the parameter.
router.get('/secrets', (req, res, next) => res.send('secrets'));
],
));
Will become...
router.get('/secrets', authMiddleware, fooMiddleware, (req, res, next) => res.send('secrets'));
import express from 'express';
import { injectMiddleware } from 'express-inject-middleware';
const app = express();
const router1 = express.Router();
const router2 = express.Router();
const authMiddleware = (req, res, next) => {
// some auth logic...
};
router1.get('/foo', (req, res, next) => res.send('foo with secret'));
router2.get('/bar', (req, res, next) => res.send('bar with secret'));
app.use(injectMiddleware(
[
authMiddleware,
],
[
// Passing app.use as the parameter
app.use('/api', router1);
app.use('/api', router2);
],
));
// Both of the "/api/foo" and "/api/bar" will use the authMiddleware.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
FAQs
Inject stack of middlewares into given routes or middlewares.
The npm package express-inject-middleware receives a total of 115 weekly downloads. As such, express-inject-middleware popularity was classified as not popular.
We found that express-inject-middleware 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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.