![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.
github.com/mysurii/mock-server
A lightweight mock server generator in Go that allows developers to easily create mock APIs based on JSON configurations, facilitating rapid frontend development and testing without backend dependencies.
To install the mock server generator, clone the repository and build the project:
git clone https://github.com/Mysurii/mock-server.git
cd mock-server-generator
go build ./cmd/cli/main.go
To run the mock server, use the following command:
./main.exe --config path/to/config.json
Or run the following command to create needed config file & example payload files
./main.exe --example
The configuration file should be in JSON format. Here is an example:
{
"port": 8080,
"endpoints": [
{
"method": "POST",
"status": 200,
"path": "/login",
"jsonPath": "./mock/auth/login.json"
},
{
"method": "GET",
"status": 200,
"path": "/users",
"jsonPath": "./mock/users/users.json"
},
{
"method": "POST",
"status": 201,
"path": "/users"
},
{
"method": "GET",
"status": 200,
"path": "/users/{id}",
"jsonPath": "./mock/users/user.json"
}
]
}
Contributions are welcome! Feel free to submit a pull request or create an issue for any enhancements or bug fixes.
FAQs
Unknown package
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.