I'm looking for a good way to Mock APIs for a sideproject, so far I haven't found any solution that has blown me away and I'm wondering If I'm missing anything.
I'm curious what people recommend for the best way to Mock APIs?
1–10 of 63 posts
I'm curious what people recommend for the best way to Mock APIs?
For REST API: https://mockoon.com/
For GraphQL: https://github.com/APIs-guru/graphql-faker
Remember that perfect is the enemy of good enough. If you're looking to be blown away by your mock server you may never get round to building your product.
Full disclosure : I am the founder of the project ;-)
There’s support for mocking in Node as well for SSR and jsdom tests.
mitmproxy --mode reverse:https://my.privateapi.com -s ./path/to/mockscript.py
This allows me to implement most of the UI and server interactions w/o being blocked by server work.