DEV Community

Discussion on: Stubbing responses from documented APIs. Worth it?

Collapse
 
rhymes profile image
rhymes
  • oatts is an OpenAPI testing tools that can generate (customizable) response bodies.

  • json schema faker can generate JSON from schemas (internally used by oatts)

I'm sure you can setup a HTTP server so that the frontend team can use these mock responses, maybe with something like json-server

Collapse
 
andreybleme profile image
Lucas Bleme

json server seems to be a good fit.
Thanks @rhymes