api-template

0.1.0 • Public • Published

api-template

Define and build your project's api with mocked data.

api-template is a lightweight api generator, it uses mustache.js and datafixture.js to build from simple hardcoded server responses up to complex dynamically generated api results.

It gives you enough control to:

  • map a route to a source
  • set the reponse's http headers (optional)
  • different types of response avaiable:
    • hardcoded (static)
    • templated response (mustache + json)
    • dynamic templated response (mustache + json + datafixture)

Getting Started

Dependencies

How it works

You will need to create a json file with your API's definition. The file will need to have the following structure:

example api.json file:

{
    "version": "0.1.0",
    "api": {
        "/api/home": {
            "header": {
                "Content-Type": "application/json"
            },
            "response": "./api/home.json"
        },
        "/api/section": {
            "header": {
                "Content-Type": "application/json"
            },
            "response": {
                "data": "./api/section.json",
                "template": "./api/section.template"
            }
        }
    }
}

Example implementation:

var express = require("express");
var path = require("path");
var http = require("http");
var api = require("api-template");
 
var app = express();
 
app.configure(function() {
    app.set("port", process.env.PORT || 3000);
    app.use(express.logger("dev"));
    app.use(express.bodyParser());
    console.log(__dirname);
    return app.use(express["static"](path.join(__dirname, "/public")));
});
 
// register your api
api.register(app,'api.json');
 
http.createServer(app).listen(app.get('port'), function() {
    return console.log("Express server listening on port " + app.get('port'));
});

api hash

api : collection of api path definitions

the api collection exppects a hash of objects, each key is the actual path that expressjs will match against each service created.

path definition

"/api/home"{
    "header": {
        "Content-Type": "application/json"
    },
    "response": "./api/home.json"
}

path's definition key

"/api/home" -> will be accesed at http://localhost:3000/api/home

header definition

"header"{
    "Content-Type": "application/json"
},

This is optional, if defined, its a hash of header settings, the object will get passed directly to express's response.set() method, more info at: http://expressjs.com/api.html#res.set.

response definition

The response object where the magic happens, it can be defined in multiple ways:

1 - most simple:

This will tell api-template to respond with the content of the file being mapped to. Currenty only supports text based files.

"response""./api/home.json"

2 - rendered teamplte with json source:

Response will be the result of the content of "data" json file passed into mustache.render().

"response"{
    "data": "./api/book.json",
    "template": "./api/book.template"
}

3 - rendered teamplte with dynamic json source:

Same process as with option 2, the difference is that the json source will now be passed through datafixture.js. This is done by setting the flag "dynamic" to true:

"response"{
    "data": "./api/books.json",
    "template": "./api/books.template",
    "dynamic": true
}

url routing and query paramters

Because we are using ExpressJS we can generate dynamic routes.

Some examples:

ExpressJS passes a request object for each service, this one has all information passed into the url, including route variables and query variables. This object is passed into the JSON Object that is passed into a template, when template is defined. Giving you full access to it to be used in any way you want on the template.

Example of its implementation:

route definition:

"/api/isbn/:isbn"{
    "header": {
        "Content-Type": "application/json"
    },
    "response": {
        "data": "./api/isbn.json",
        "template": "./api/isbn.template",
        "dynamic": true
    }
}

file: ./api/isbn.template

{
    "book": {
        "isbn": "{{request.params.isbn}}",
        "title": "{{book.title}}"
    }
}

Making a call to http://localhost:3000/api/isbn/SOME-ISBN-NUMBER its output could look like:

{
    "book": {
        "isbn": "SOME-ISBN-NUMBER",
        "title": "vitae dignissim"
    }
}

Next Steps:

  • complete RESTful support.
  • support for nested sources, this will allow each service to share JSON results

Readme

Keywords

none

Package Sidebar

Install

npm i api-template

Weekly Downloads

2

Version

0.1.0

License

MIT

Last publish

Collaborators

  • acatl