Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
express-middleware
Advanced tools
npm i express-middleware --save
Force SSL redirection. Options object is optional. Two possibilities to disable redirection :
true
disable
to 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 82 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.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.