A simple server that answers to a configured URL with a JSON of your choice.
To use it , configure the json configurations file "definitions.json" as you would like:
{ "port": 3000, "routes": [{ "url": "/app", "response": { "teste": 2 }, "method": "post", "statusCode": 400, } ] }
routes list has a object that defines the url that will answer , and the json object you want to use.
In the case above, you just need to use in your browser localhost:3000/app to se the json into your browser.
Sample using:
if you want to configure a url http://localhost:3003/myresource that answers to POST with a json { "id": 2, "name": "hello"} you simple has to:
change the "definitions.json" as below:
{ "port": 3003, "routes": [{ "url": "/myresource", "response": { "id": 2, "name": "hello" }, "method": "post" } ] }
If you want a different status code answer, just change the variable "statusCode" with the needed value