interfake
interfake copied to clipboard
:computer: Fake APIs for prototypes & automated tests.
Bumps [merge](https://github.com/yeikos/js.merge) from 1.2.1 to 2.1.1. Commits 56ca75b build: v2.1.1 7b0ddc2 fix: prototype pollution 8686d85 build: bump version 80151be build 0acaaf3 build: update dev dependencies f571887 Merge pull request #38...
POST takes only `url` as a parameter, it would be great if it can take `request body` also, so it can give different responses for different `request body`. Expected post...
Automatic CORS preflight (added in 1.16.0) always returns header `'Access-Control-Allow-Origin': '*'`. When using credentials, `'*'` is not accepted by browsers, and a specific allowed origin is needed instead. When I...
- added .idea folder to .gitignore - updated npm-shrinkwrap output
When I run the examples-javascript of extends: https://github.com/basicallydan/interfake/blob/master/examples-javascript/fluent-extends.js I got the result: ``` { "items": [ { "id": 2, "name": "Item 2" } ] } ``` But when I add...
When you want to move from the mock prototype to a real implementation, it could be handy to have some unit tests generated. Then throw away the mock server and...
EDIT @basicallydan turned this into a handy checklist: - [x] Support serving up specified images as images (for browser) - [ ] Support serving up specified videos as videos (for...
The JS interface for creating APIs is super easy and clear, but the command line interface can be a bit of a faff. This: ``` $ interfake GET /thing 200...
Hello, I'd like to use interfake to simulate an API I'm implementing but I think I can't use more than one Content-Type for the same HTTP resource. In my case,...