bahildebrand / propublica-campaign-finance-node

Node wrapper for ProPublica campaign finance API.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Status

Build Status Greenkeeper badge

propublica-campaign-finance-node

Node wrapper for ProPublica campaign finance API.

Getting Started

First request an api key here.

Declare a new instance of the object as follows:

var ppcf = require('ppcf');

var p = new ppcf('2016', 'API_KEY_HERE');

All function calls share the name of the API and accept a json object with the field indicated in the brackets of indicated in the API documentation, and return a promise with the result being a json object.

Below is an example of the candidate search function:

p.candidates.search({"candidate":"trump"})
.then((result) => {
    console.log(result);
})

About

Node wrapper for ProPublica campaign finance API.

License:MIT License


Languages

Language:TypeScript 100.0%