
Company News
Socket Has Acquired Secure Annex
Socket has acquired Secure Annex to expand extension security across browsers, IDEs, and AI tools.
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é
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.

Company News
Socket has acquired Secure Annex to expand extension security across browsers, IDEs, and AI tools.

Research
/Security News
Socket is tracking cloned Open VSX extensions tied to GlassWorm, with several updated from benign-looking sleepers into malware delivery vehicles.

Product
Reachability analysis for PHP is now available in experimental, helping teams identify which vulnerabilities are actually exploitable.