![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
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
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.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.