morsdyce/mimic

Is there a plan to support server side mocking?

jackjocross opened this issue · 7 comments

I came across Mimic while looking for a mocking tool for local development and it looks awesome!

My only issue is my application uses SSR so I would also need to mock the requests made from the server. I see that Mimic is described as "client side mocking" but I was wondering if there is any way to do this currently or if there are plans to support SSR in the future?

Are you looking for contributors? This is a use case I would love to help out with.

Cool! I think remote mode sounds like a good place to start. I'm planning on digging into this more over the weekend so should have a better understanding then.

Just an update on this, the latest releases of mimic expose a custom interceptor system where you could implement your own interceptor, so this is now possible to implement.

@morsdyce No you can't really do that.. bootstrapUI & other functions will throw errors.. unless there's a way to register a custom interceptor before load that I'm missing?

hey @danrevah
It's possible to load mimic without any UI at all using only strictly the API layer.
For example we have mimic/remote which communicates requests via web sockets to an external UI client run separately (via a separate package called mimic-remote).

In addition to that you do have the ability to create a custom interceptor to capture request in any manner you'd want. This isn't documented very well currently but you can see how to register it here:
https://github.com/500tech/mimic/blob/master/lib/api/index.js#L29

and an example of what an interceptor usually contains here:
https://github.com/500tech/mimic/blob/master/lib/api/interceptors/web-interceptor.js

As long as you keep the same interface it should work.
If you're interested in helping with this I'd love to talk more and explain how everything works. :)