1.0.3 • Published 8 years ago

node-zomato v1.0.3

Weekly downloads
3
License
ISC
Repository
github
Last release
8 years ago

node-zomato

A NodeJS Wrapper for the Zomato Search API

Usage

Install the package by typing npm install node-zomato --save in the command line

Require the package from your script:

var Zomato = require('node-zomato')

You have to get the API token from https://developers.zomato.com/api

Example

var ZomatoAPI = require('node-zomato');

var api = new ZomatoAPI('YOUR_API_TOKEN');

api.verify(function(isVerified) {
    console.log(isVerified);
    if (isVerified === false) {
        process.exit();
    }
});

TODO

Right now this wrapper just supports callbacks. Have to implement promises.

Any pull-requests are welcome! :)

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago