- Does the mock server run locally or in the cloud?
- The tool generates mock configuration and response definitions you can run locally with WireMock, Mockoon, or json-server. It does not host a live server itself.
- Can I generate realistic fake data?
- Yes — the schema-based generator uses Faker.js conventions for common field names (email, name, date, uuid). Custom fields use the type hint in the schema.
- What is the difference between a mock and a stub?
- A stub returns fixed pre-programmed responses. A mock also verifies that the caller made specific calls with expected arguments. This tool generates stubs — verification is the job of your test framework.