
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
cors-extend
Advanced tools
Cors-extend is a package which provides the configuration to the existing Cors nodejs package and which enables to configure cors according to the environments.
$ npm install cors-extend
import cors from "cors";
import { corsExtend } from "cors-extend";
cors(
corsExtend({
env: {
development: {
origins: [
{
origin: "http://localhost:3000",
methods: ["GET"],
},
],
routes: [
{
endpoint: "/characters",
methods: ["GET", "POST"],
origins: ["http://localhost:5000"],
},
],
},
},
global: {
blockHttpClient: true,
},
}),
);
Cors-Extend is capable of loading specific configuration according to Environment variable, ENVIRONMENT. The variable can be pass either by dotenv cli, .env file or any other way.
Note
that both environment variable value and configuration name should be equal*
After configuring environment variable in configuration file under the env object specify the environment name
cors(corsExtend({
env{
development:{
}
}
}))
The endpoints can be configured in two ways
By using this configuration we can specify the origins and methods that are allowed for that origins, for the entire application.
origins is an array of object which has a template of
{
origin:"Origin Name",
methods:["GET","POST","PUT","DELETE","PATCH"]
}
Example:
env: {
development: {
origins: [
{
origin: "http://localhost:3000",
methods: ["GET"],
},
];
}
}
So, according to the above configuration the application will only accept GET requests from the client http://localhost:3000
Note
When the origins param or configuration for the certain environment is unspecified, all the requests from all origins will be accepted (Not recommended).
FAQs
Configure the Cors Options with Ease
We found that cors-extend 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
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.