![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
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 2 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.