http-mock-json
v1.6.1
Published
Allows to create a mock server and test the frontend without depending on the backend.
Readme
HTTP MOCK JSON
Allows to create a mock server and test the frontend without depending on the backend.
Table of Contents
- Features
- Quick Start
- Installation and use
- Commands
- Validation System
- Advanced examples
- Troubleshooting
- License
Features
Key Features:
- Zero Configuration - Get started in seconds with interactive setup
- Automatic Validation - Comprehensive validation system prevents errors before they happen
- Hot Reload - Watch mode automatically restarts server on file changes
- Multiple Responses - Simulate different scenarios (success, error, etc.) for the same endpoint
- Type Safe - Built with TypeScript for better developer experience
- RESTful Support - Full support for GET, POST, PUT, PATCH, DELETE methods
- JSON Based - Simple JSON files, no complex configuration needed
- Custom Headers - Support for custom HTTP headers in responses
- Parameter Support - Dynamic routes with parameters (e.g.,
/users/:id)
Quick Start
# Install
npm install http-mock-json --save-dev
# Initialize
mock-server init
# Start server
mock-server startThat's it! Your mock server is running on http://localhost:3000 🎉
Installation and use 🔧
Install library.
npm install http-mock-json --save-devRun the initialization command.
mock-server initThis command will:
- Create a
mocksfolder in your project root (or in the specified path) - Add a
mock:startscript to yourpackage.json(enabled by default) - Optionally create your first mock file (enabled by default)
- Create a
If you chose to create a mock (default behavior), you'll be prompted interactively:
Step 1: Enter the name for your JSON file
? What is the name of the json file ? animalsStep 2: Enter your API endpoint
? What is the endpoint ? data/animalsYou can use parameters in endpoints like
data/animals/:idStep 3: Select the HTTP methods you want to mock
? Select the http verbs you use ❯ ◯ GET ◯ POST ◯ PUT ◯ PATCH ◯ DELETEUse arrow keys to navigate, space to select, and 'a' to toggle all
Step 4: Confirm the creation
? Confirm? (Y/n) YA mock file will be created with a basic structure containing:
- Your specified endpoint
- Selected HTTP methods (GET, POST, etc.)
- Two default responses:
success(200) anderror(404) - Empty body objects ready to be filled
Mock structure
| Key | Required | Type | Example | Description | |--------------|----------|----------------|------------------------------------------|----------------------------------------------------------------------------| | endpoint | ✅ | string |
data/animals,data/animal/:parameter| API route. Allowed characters: letters, numbers, "-", "_", ".", "~", "/", and parameters like ":id" | | HTTP Method | ✅ | string |GET,POST,PUT,PATCH,DELETE| HTTP verb (must be uppercase) | | nameResponse | ✅ | string |success,error,error-401| Response name that the mock will use (must exist in responses array) | | responses | ✅ | array | | A mock can have multiple responses (array), each identified with aname. | | name | ✅ | string | | Response name (unique within the responses array) | | statusCode | ✅ | string/number |200,"200",404,"404"| HTTP Status Codes (validated, warnings for non-standard codes) | | headers | ❌ | object |{ "Content-Type": "application/json" }| Headers in json format (optional) | | body | ✅ | any | | Response in json format. Can benull, object, array, string, number, or boolean |Edit the mock file to add your response data.
Open the created JSON file (e.g.,
mocks/animals.json) and fill in thebodyobjects with your mock data:{ "data/animals": { "GET": { "nameResponse": "success", "responses": [ { "name": "success", "statusCode": "200", "body": { "animals": [ { "id": 1, "name": "Lion" }, { "id": 2, "name": "Tiger" } ] } }, { "name": "error", "statusCode": "404", "body": { "message": "No animals found" } } ] } } }Tip: Change the
nameResponsevalue to switch which response is returned by default. For example, set"nameResponse": "error"to return the error response.Execute the start command
mock-server startThe server will automatically validate:
- Port availability first - Checks if the port is available before processing any files
- All mock files - Validates all mock files for errors
If there are validation errors, the server will not start and will display detailed error messages. If there are warnings (like non-standard status codes), they will be shown but won't prevent the server from starting.
Watch Mode: The server automatically watches for changes in your mock files and restarts when you save changes. If errors are introduced during watch mode, the server will display the errors and wait for you to fix them.
Commands ⚙️
initCreate the folder that will contain the mocks.
mock-server init| Flag | Default | Description | |-------------|---------|-----------------------------------------------------------| | -p --path |
root| Indicates the location of the mocks in a specific folder. | | -m --mock |true| Create a first mock. | | -s --script |true| Add script to start the mock in the package.json file. |Example:
mock-server init --path apps/folder1 --mock false --script falsestartStart mock server.
mock-server start| Flag | Default | Description | |-----------|---------|-----------------------------------------------------------| | -p --port |
3000| Indicates the port where the mock will be executed | | -f --path |root| Indicates the location of the mocks in a specific folder. |Example:
mock-server start --port 3001 --path apps/folder1addCreate a mock.
mock-server add| Flag | Default | Description | |-----------|---------|-----------------------------------------------------------| | -p --path |
root| Indicates the location of the mocks in a specific folder. |Example:
mock-server add --path apps/folder1
Validation System ✅
The server includes a comprehensive validation system that checks your mock files before starting:
Automatic Validation
When you run mock-server start, the system automatically validates in this order:
Port availability (validated first, before loading mocks): Checks if the specified port is available using an efficient socket connection method. If the port is in use, the server fails immediately without loading or validating mocks, saving time and resources.
Endpoint format: Ensures endpoints use valid characters and proper structure
HTTP methods: Validates that only valid HTTP methods are used (
GET,POST,PUT,PATCH,DELETE)Response structure: Checks that all required fields are present (
name,statusCode,body)Response matching: Verifies that
nameResponsereferences exist in the responses arrayJSON structure: Ensures files contain valid JSON objects
Error Handling
- Errors: Critical issues that prevent the server from starting (missing required fields, invalid structure, etc.)
- Warnings: Non-critical issues that don't prevent startup (non-standard status codes, etc.)
If errors are found, the server will display detailed messages showing:
- The file where the error occurred
- The endpoint and method (if applicable)
- A clear description of the issue
Watch Mode Behavior
When files change during watch mode:
- The server attempts to restart automatically
- If validation errors are found, the restart is prevented
- Clear error messages are displayed
- The server waits for you to fix the issues before restarting
Recommendations 📋
- Review the advanced examples.
- A single json file can contain many mocks.
- There can be many json files each with their respective mocks.
- The server validates your mocks automatically - fix any errors before the server can start.
Advanced examples
Example 1: Basic mock with multiple responses
This example shows how to create multiple responses for the same endpoint, allowing you to simulate different scenarios.
{
"data/animals": {
"GET": {
"nameResponse": "AnimalsError",
"responses": [
{
"name": "AnimalsList",
"statusCode": "200",
"body": {
"example": "data"
}
},
{
"name": "AnimalsError",
"statusCode": "404",
"body": {
"example-error": "error"
}
}
]
},
"POST": {
"nameResponse": "AnimalsError",
"responses": [
{
"name": "AnimalsSave",
"statusCode": "201",
"body": {
"example": "data"
}
},
{
"name": "AnimalsError",
"statusCode": "404",
"body": {
"example-error": "error"
}
}
]
}
}
}Example 2: Mock with custom headers
{
"api/users": {
"GET": {
"nameResponse": "UsersList",
"responses": [
{
"name": "UsersList",
"statusCode": 200,
"headers": {
"Content-Type": "application/json",
"X-Custom-Header": "custom-value"
},
"body": {
"users": [
{
"id": 1,
"name": "John"
},
{
"id": 2,
"name": "Jane"
}
]
}
}
]
}
}
}Example 3: Response with null body (204 No Content)
{
"api/users/:id": {
"DELETE": {
"nameResponse": "deleted",
"responses": [
{
"name": "deleted",
"statusCode": "204",
"body": null
},
{
"name": "not-found",
"statusCode": "404",
"body": {
"message": "User not found"
}
}
]
}
}
}Example 4: Endpoint with parameters and multiple methods
{
"data/animals/:id": {
"GET": {
"nameResponse": "AnimalsList",
"responses": [
{
"name": "AnimalsList",
"statusCode": "200",
"body": {
"example": "data"
}
},
{
"name": "AnimalsError",
"statusCode": "404",
"body": {
"example-error": "error"
}
}
]
},
"POST": {
"nameResponse": "AnimalsSave",
"responses": [
{
"name": "AnimalsSave",
"statusCode": "201",
"body": {
"example": "data"
}
},
{
"name": "AnimalsError",
"statusCode": "404",
"body": {
"example-error": "error"
}
}
]
}
},
"data/brands": {
"GET": {
"nameResponse": "BrandsList3",
"responses": [
{
"name": "BrandsList",
"statusCode": "200",
"body": {
"example": "data1"
}
},
{
"name": "BrandsList2",
"statusCode": "200",
"body": {
"example": "data2"
}
},
{
"name": "BrandsList3",
"statusCode": "200",
"body": {
"example": "data3"
}
}
]
}
}
}Troubleshooting 🔧
This section documents all possible errors and warnings you might encounter, organized by category.
File-Level Errors
These errors occur when there are issues with the file structure or file system:
| Error Message | Description | Solution |
|---------------------------------------------|-----------------------------------------|---------------------------------------------------------------------|
| The directory named mocks does not exist | The mocks folder is missing | Run mock-server init to create the folder |
| No files found | No JSON files found in the mocks folder | Create at least one .json file in the mocks folder |
| JSON syntax error: ... | Invalid JSON syntax in the file | Check for missing commas, brackets, or quotes. Use a JSON validator |
| Error processing file: ... | General file processing error | Check file permissions and ensure the file is readable |
| The file must contain a valid JSON object | File content is not a JSON object | Ensure the file starts with { and contains valid JSON structure |
| The file does not contain any endpoints | File is empty or has no endpoints | Add at least one endpoint to the file |
Example:
Error:
File: my-mock.json
JSON syntax error: Unexpected token } in JSON at position 45Endpoint Errors
These errors occur when endpoint definitions are invalid:
| Error Message | Description | Solution |
|-----------------------------------------------------------------------------------------------------------|--------------------------------------|-----------------------------------------------------------------------------|
| Invalid path. Allowed characters: letters, numbers, "-", "_", ".", "~", "/", and parameters like ":id". | Endpoint contains invalid characters | Use only allowed characters. Example: data/users/:id ✅, data/users#id ❌ |
| Must be an object | Endpoint value is not an object | Ensure the endpoint value is wrapped in {} |
| Does not contain any HTTP methods | Endpoint has no HTTP methods defined | Add at least one HTTP method (GET, POST, etc.) to the endpoint |
Example:
❌ Invalid - Invalid character # in endpoint:
{
"data/users#id": {
"GET": {
"nameResponse": "success",
"responses": []
}
}
}✅ Valid - Correct parameter syntax:
{
"data/users/:id": {
"GET": {
"nameResponse": "success",
"responses": []
}
}
}HTTP Method Errors
These errors occur when HTTP method definitions are invalid:
| Error Message | Description | Solution |
|---------------------------------------------------------------------|------------------------------------------------------|--------------------------------------------------------------------------|
| Invalid HTTP method. Valid methods: GET, POST, PUT, PATCH, DELETE | Method name is not valid | Use only: GET, POST, PUT, PATCH, or DELETE (must be uppercase) |
| The method must be an object | Method value is not an object | Ensure the method value is wrapped in {} |
| Missing property "nameResponse" | nameResponse property is missing | Add "nameResponse": "your-response-name" to the method |
| Missing property "responses" | responses array is missing | Add "responses": [...] array to the method |
| The "responses" property must be an array | responses is not an array | Change responses to an array format [] |
| The responses array is empty | responses array has no items | Add at least one response object to the array |
| The "nameResponse" "X" does not exist in responses | nameResponse value doesn't match any response name | Ensure nameResponse matches a name in the responses array |
Example:
❌ Invalid - Lowercase method, should be uppercase:
{
"data/users": {
"get": {
"nameResponse": "success",
"responses": []
}
}
}✅ Valid - Uppercase method:
{
"data/users": {
"GET": {
"nameResponse": "success",
"responses": [
{
"name": "success",
"statusCode": "200",
"body": {}
}
]
}
}
}Response Errors
These errors occur when individual response objects are invalid:
| Error Message | Description | Solution |
|----------------------------------------------|-----------------------------------------|---------------------------------------------------------------|
| The response must be an object | Response is not an object | Ensure each response in the array is wrapped in {} |
| Missing property "name" | Response is missing the name property | Add "name": "your-response-name" to each response |
| Missing property "statusCode" | Response is missing statusCode | Add "statusCode": "200" (or any valid status code) |
| The "statusCode" "X" is not a valid number | statusCode is not a valid number | Use a number or string number: 200, "200", 404, "404" |
| Missing property "body" | Response is missing body property | Add "body": {}, "body": null, or any valid JSON value |
| The "headers" property must be an object | headers is not an object | If provided, headers must be an object: "headers": {} |
Example:
❌ Invalid - Invalid statusCode and missing body:
{
"name": "success",
"statusCode": "not-a-number"
}✅ Valid - Valid statusCode and body included:
{
"name": "success",
"statusCode": "200",
"body": {
"data": "example"
}
}✅ Valid - body can be null (useful for 204 No Content responses):
{
"name": "deleted",
"statusCode": "204",
"body": null
}Warnings
Warnings don't prevent the server from starting but indicate potential issues:
| Warning Message | Description | Action |
|---------------------------------------------------------|-----------------------------------------|------------------------------------------------------------------------------------------------------------|
| The "statusCode" X is not a standard HTTP status code | Status code is not in the standard list | Status codes like 299, 599 work but may not be standard. Consider using standard codes (100-599 range) |
Standard HTTP Status Codes:
- 1xx: 100, 101
- 2xx: 200, 201, 202, 204
- 3xx: 300, 301, 302, 304
- 4xx: 400, 401, 403, 404, 405, 409, 422
- 5xx: 500, 501, 502, 503
System Errors
These errors occur when there are issues with the server or system:
| Error Message | Description | Solution |
|------------------------------------|-----------------------------------|---------------------------------------------------------------------------------|
| Port must be a valid number | Port value is not a valid number | Use a valid port number: mock-server start --port 3000 |
| Port must be between 1 and 65535 | Port is outside valid range | Use a port number between 1 and 65535: mock-server start --port 3000 |
| Port X is already in use. Please use a different port. | Port is already in use | The server validates port availability before loading mocks. If the port is occupied, it fails immediately without processing mock files. Use a different port: mock-server start --port 3001 or stop the service using that port. |
Note: Port validation happens first, before loading or validating any mock files. This ensures faster feedback when a port is unavailable and prevents unnecessary file processing.
Watch Mode Issues
Watch mode not restarting:
- Check that you're saving files in the correct
mocksfolder - Ensure files have
.jsonextension - Fix any validation errors that prevent restart
- Check console for error messages
- Ensure the file is saved completely (some editors save in multiple steps)
Complete Error Example
Here's what a complete error output looks like:
Error:
File: my-mock.json
Invalid path. Allowed characters: letters, numbers, "-", "_", ".", "~", "/", and parameters like ":id".
[GET] data/users: Missing property "body"
[POST] data/products: The "nameResponse" "NotFound" does not exist in responses
[GET] data/products: The "statusCode" "abc" is not a valid number
Warnings:
File: my-mock.json
[GET] data/users: The "statusCode" 299 is not a standard HTTP status codeCommand-line error example:
✖ Port must be a valid numberor
✖ Port must be between 1 and 65535Quick Validation Checklist
Before starting the server, verify:
- Port availability - The port is validated first, before loading any mocks. Ensure the port number is valid (between 1 and 65535) and not in use by another service
- All JSON files have valid syntax
- All endpoints use valid characters
- All HTTP methods are uppercase:
GET,POST,PUT,PATCH,DELETE - All methods have
nameResponseandresponsesproperties - All responses have
name,statusCode, andbodyproperties (body can benull) nameResponsematches anamein the responses arraystatusCodeis a valid numberheaders(if provided) is an object
Note: Port validation happens automatically when you start the server. If the port is unavailable, you'll get an immediate error before any mock files are processed.
Contributing 🤝
Contributions are welcome! If you'd like to contribute:
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
Please make sure your code follows the existing style.
FAQ ❓
Q: Can I use this in production?
A: This library is designed for development and testing purposes. It's not recommended for production use.
Q: Does it support WebSocket?
A: Currently, only HTTP/HTTPS methods (GET, POST, PUT, PATCH, DELETE) are supported.
Q: Can I use TypeScript types?
A: Yes! The library is built with TypeScript and includes type definitions.
Q: How do I change the response dynamically?
A: Simply change the nameResponse value in your mock JSON file and the server will use watch mode to reload
automatically.
Q: Can I have multiple mock files?
A: Yes! You can have as many JSON files as you want in the mocks folder. All will be loaded automatically.
License 📖
http-mock-json is MIT licensed.
Author ✒️
Support 💬
- 📧 Issues: GitHub Issues
- 🐛 Bug Reports: Please use the GitHub issue tracker
- 💡 Feature Requests: We'd love to hear your ideas!
