canned
canned copied to clipboard
Server to respond with fake API responses, by using a directory of files for finding out what to say!
Hi there, This looks like a great mocking framework and exactly what I need for testing, so thanks for putting in all the hard work and sharing this! However I...
This change fixes a couple of problems: The regexes as they stood were both matching per character, which makes for some interesting matches such as: http://rubular.com/r/uZpZRyhmpN Changing the character group...
Adds a test case for issue #87
If canned is used to stub out requests for a server it can be useful to proxy requests for unknown routes. The idea is to instead of serving a `404`...
Currently canned resolves the routes on request, which is great since they can be modified while canned is running without any problems, adding new files/folders/etc. One thing missing so is...
Scanning through the directory to explore the API is nice but it would be great if it would be possible to output a simple HTML page which just lists the...
Not sure what we need todo here but it would be nice if it could be easily integrated with express during testing / development. Something like ``` javascript var app...
Most API's have a default error message like this: ``` json {"message":"404 Not found"} ``` It would be awesome if we could create a `404.json` or something, and have a...
@mulderp pointed out rightfully that the getting started is located rather awkward at the middle if the docs. I think to move it to the top would be great as...