# fliptop-wrapper

> Fliptop Wrapper

Latest version **0.1.3** (published 2013-08-14) · 0 weekly downloads

## Install

```sh
npm install fliptop-wrapper
pnpm add fliptop-wrapper
yarn add fliptop-wrapper
bun add fliptop-wrapper
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.3 |
| Published | 2013-08-14 |
| First published | 2013-08-14 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >= v0.8.15 |
| Dependencies | 1 |
| Known vulnerabilities | 0 (+2 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Sanjay Tourani |
| Maintainers | sanjaytourani |

## Links

- npm: https://www.npmjs.com/package/fliptop-wrapper
- Repository: https://github.com/tourani/fliptop-wrapper
- npm.io page: https://npm.io/package/fliptop-wrapper

## Dependencies (1)

- [request](https://npm.io/package/request.md) ~2.26.0

## Recent versions

- 0.1.3 (latest) — 2013-08-14
- 0.1.1 — 2013-08-14
- 0.1.0 — 2013-08-14

## README

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)

---
_Source: https://npm.io/package/fliptop-wrapper · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
