
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
cors-express
Advanced tools
Supply Chain Security
Vulnerability
Quality
Maintenance
License
Middleware to control CORS in an Express app
The best way to install it is using npm
npm install cors-express --save
var cors = require('cors-express');
var app = express(),
options = {};
app.use(cors(options));
{
allow : {
origin: '*',
methods: 'GET,PATCH,PUT,POST,DELETE,HEAD,OPTIONS',
headers: 'Content-Type, Authorization, Content-Length, X-Requested-With, X-HTTP-Method-Override'
},
expose :{
headers : null
},
max : {
age : null
},
options : function(req, res, next){
if (req.method == 'OPTIONS') {
res.status(200).end();
} else {
next();
}
},
specials : {
powered : null
}
This method override the normal use of the "option" method and return OK with seted CORS headers
Can change the "x-powered-by" header. You can use:
This plugin is proudly supported by Kubide hi@kubide.es
FAQs
Middleware to control CORS in an Express app
The npm package cors-express receives a total of 25 weekly downloads. As such, cors-express popularity was classified as not popular.
We found that cors-express 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.