Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
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
The npm package cors-extend receives a total of 1 weekly downloads. As such, cors-extend popularity was classified as not popular.
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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.