apimocker icon indicating copy to clipboard operation
apimocker copied to clipboard

node.js module to run a simple http server for mock service responses.

Results 31 apimocker issues
Sort by recently updated
recently updated
newest added

Bumps [acorn](https://github.com/acornjs/acorn) from 6.1.1 to 6.4.1. Commits 9a2e9b6 Mark version 6.4.1 90a9548 More rigorously check surrogate pairs in regexp validator df0cf1a Mark version 6.4.0 5303412 Also export Parser via Parser.acorn...

dependencies

For mock server configurations that proxy unmocked routes, it would be useful to be able to turn off mocked routes dynamically in order to restore proxying.

enhancement

I want to verify the form-data in the request,but the request body is empty,is there any way to support form-data requests?

question

Take this simple endpoint config example: ```javascript "cards/updatePin": { "verbs": ["post"], "switch": ["notfound", "unauthorised"], "responses":{ "post": { "httpStatus": 204 } }, "switchResponses": { "notfoundtrue": {"httpStatus": 404, "mockFile": "notfound.json"}, "unauthorisedtrue": {"httpStatus":...

bug

How can I get the correct syntax, when sending special characters or blanks? Before I could visualize them when sending the request, but now it does not show the suggestion...

Hello, nice work! Really appreciate it. I have a question regarding having **multiple types of params**, both in path (`var/:id`) and in body (`{"dynamicValue": "string"}`). How to do with it?...

I couldn't find in the documentation a way to disable jsonpath. At the moment I have two endpoints : `balance` and `account` that is the mock for the account endpoint:...

Not sure if you'd agree with this change, so I wanted to ask before submitting a PR. Currently in your documentation, you have one large config file, the further down...

Is the JSON coming in Request Parameter supported ? like : responseJSON= { "customerId" : "12"; "city" : "Cincinnati" } can you use a switch statement on the request parameter...

enhancement

We have an endpoint that we're trying to mock. In short, there is a 'symbols' key which takes a comma-separated list of values. We have easily set up switching for...