0.1.3 • Published 11 years ago

fliptop-wrapper v0.1.3

Weekly downloads
12
License
-
Repository
github
Last release
11 years ago

fliptop-wrapper

A wrapper for the Fliptop API

##Usage To make a query, you need to provide the service (email, facebook, linkedIn or twitter) and the handle:

var fliptop = require('fliptop-wrapper')('API_key');

fliptop.email('paul@gmail.com', function (err, data){
     if (err) throw err;

console.log(data);
});
 
 fliptop.twitter('elonmusk', function (err, data){
     if (err) throw err;
    console.log(data);
});

fliptop.facebook('camplejohn', function (err, data){
if (err) throw err;

  console.log(data);
});

fliptop.facebook('williamhgates', function (err, data){
if (err) throw err;

    console.log(data);
});

##Example To use the included example, do the following:

node example.js API_key

#License (Mit License)

0.1.3

11 years ago

0.1.1

11 years ago

0.1.0

11 years ago