MockWeaver

MockWeaver

Alasgarov/mockweaver

4 followers

This service is responsible for handling mock API configurations. It loads mock request-response configurations from a specified file and provides mock responses for API calls.
MockWeaver gallery image
Free
Launch tags:Developer ToolsGitHub
Launch Team
Flowstep
Flowstep
Generate real UI in seconds
Promoted

What do you think? …

T
Maker
📌
The mock service reads mock request-response pairs from the provided JSON file. Ensure your file is structured correctly to avoid errors. Example structure of the mock-service-request-response.json: { "port": 8083, "routes": [ { "uri": "/api/v1", "method": "GET", "request": { "contentType": "application/json", "content": { "username": "test", "password": "test" } }, "response": { "statusCode": 400, "contentType": "application/json", "content": { "response": "ok" } } } ] }