Turn any JSON file into a full, explorable, REST API.
$ npm install -g apiize- Start a new server on a given JSON file or url
$ apiize 'https://raw.githubusercontent.com/lambda2/apiize/master/test/datasets/punchlines.json'
___ _ _
/ _ \ (_|_)
/ /_\ \_ __ _ _ _______
| _ |'_ \| | |_ / _ \| | | | |_) | | |/ / __/\_| |_/ .__/|_|_/___\___| | | |_|💫 Express has taken the stage and is listening on port 1313∙ GET /api/contents Return all the contents∙ GET /api/contents/:id Return the given contents∙ GET /api/tags Return all the tags∙ GET /api/tags/:id Return the given tags∙ GET /api/authors Return all the authors∙ GET /api/authors/:id Return the given authors∙ GET /api/albums Return all the albums∙ GET /api/albums/:id Return the given albums∙ GET /api/titles Return all the titles∙ GET /api/titles/:id Return the given titles∙ GET /api/ Return all items∙ GET /api/random A random item- Make requests on it
$ curl -H "Accept: application/json""localhost:1313/"
{"endpoints":[{"url":"/api/contents","description":"Return all the contents"},{"url":"/api/contents/:id","description":"Return the given contents"},{"url":"/api/tags","description":"Return all the tags"},{"url":"/api/tags/:id","description":"Return the given tags"},{"url":"/api/authors","description":"Return all the authors"},{"url":"/api/authors/:id","description":"Return the given authors"},{"url":"/api/albums","description":"Return all the albums"},{"url":"/api/albums/:id","description":"Return the given albums"},{"url":"/api/titles","description":"Return all the titles"},{"url":"/api/titles/:id","description":"Return the given titles"},{"url":"/api/","description":"Return all items"},{"url":"/api/random","description":"A random item"}]}%constApiize=require('apiize');// Here is the default optionsconstoptions={verbose: false,// Output more verbose requestsprefix: 'api',// The root endpoint of the APIport: 1313// The express server port.};// Turn the 'http://example.org/file.json' file into an APIletapiize=newApiize('http://example.org/file.json',options);// When apiize is readyapiize.on('ready',function(server){server.serve();// run the server});varApiize=require('apiize');varapi=newApiize(link,options);Triggered when the file or the link is fully loaded, and the express server is ready to be started.
varapi=newApiize(link,options);api.on('ready',function(server){server.serve();// run the server});Create a new Apiize object using the given link and options.
The link argument must be a string of a JSON file or a JSON URL.
Apiize accepts these properties in the options object.
verbose
Defaults to
false, add a more verbose logging of incoming requests.Without
verbose:GET / 200 146 - 6.079 msWith
verbose:::1 - - [25/Jun/2016:15:41:06 +0000] "GET / HTTP/1.1" 200 750 "-" "curl/7.43.0"
prefix
Set the root path of the generated api routes. Defaults to
api.port
Set the express server port. Defaults to
1313.
Triggered when an event is emmmited (e.g., the ready event).
Start the express server. Must be called when the ready event is called.
To run the test suite, first install the dependencies, then run npm test:
$ npm install
$ npm testMIT © Andre Aubin

