
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
express-middleware
Advanced tools
npm i express-middleware --save
Force SSL redirection. Options object is optional. Two possibilities to disable redirection :
truedisableto true in setup options.const sslRedirect = require('express-middleware').sslRedirect;
app.use(sslRedirect(options));
Middleware dependency : None
Add or append the request id to the req object.
const requestId = require('express-middleware').requestId;
app.use(requestId());
Middleware dependency : None
Create a child logger and append it to the req object. Logger must be a bunyan instance (with the method child).
const childLogger = require('express-middleware').childLogger;
app.use(childLogger(logger));
Middleware dependency : Request Id (optional)
Append the token from header or query param to the req object.
Query param format is token=<mytoken> and header format is Authorization: Bearer <mytoken>.
const jwtToken = require('express-middleware').jwtToken;
app.use(jwtToken());
Middleware dependency : None
Log http access properties for each request (like Apache httpd) in JSON format.
const httpAccessLogger = require('express-middleware').httpAccessLogger;
app.use(httpAccessLogger(opts));
Middleware dependency : Child logger (optional if options are overridden), Request Id (optional), JWT Token (optional)
Set req.language according to the Accpet-Language header
opts.languages is a mandatory array, it must contains at least one language.
const language = require('express-middleware').language;
app.use(language(opts));
Middleware dependency : None
Parse i18n data in req.body using req.language value
const i18n = require('express-middleware').i18n;
app.use(i18n());
Middleware dependency : Language middleware
Force IP address validation before accepting a request.
const ipBlacklist = require('express-middleware').blacklistIPs;
app.use(ipBlacklist());
Middleware dependency : None
npm test # start test suites (coverage + lint + mocha)
npm run coverage # run the code coverage tool
npm run coverage-html # run the code coverage tool with html report
npm run lint # execute linter tool
npm run mocha # run the tests
FAQs
Set of middlewares for Chauffeur-Privé
The npm package express-middleware receives a total of 65 weekly downloads. As such, express-middleware popularity was classified as not popular.
We found that express-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.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.