-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Response handler for dynamic requests (POC) #160
base: master
Are you sure you want to change the base?
Conversation
This PR is stale because it has been open for 30 days with no activity. Remove the Stale label or comment or this will be closed in 10 days. |
ping @AvdLee perhaps? |
This PR is stale because it has been open for 30 days with no activity. Remove the Stale label or comment or this will be closed in 10 days. |
ping @kairadiagne perhaps? |
This PR is stale because it has been open for 30 days with no activity. Remove the Stale label or comment or this will be closed in 10 days. |
.. |
This PR is stale because it has been open for 30 days with no activity. Remove the Stale label or comment or this will be closed in 10 days. |
. |
I'm using Mocker as mock backend for our app to be able to develop the app in "demo mode" as long as other developers are still working on the backend.
This sometimes requires a more dynamic response to be returned from the mocks based on the request body or previous requests. I considered creating something from scratch based off Mocker, but instead I've added a simple
responseHandler
option to my own fork to facilitate this.It works great and just using my own fork works fine, but I can imagine that this could be valuable for other developers as well. Here's a POC branch that demonstrates this. If you think this is something that would benefit Mocker, I could draft up a real PR with a nicer implementation if you like.