Node wrapper for ProPublica campaign finance API.
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);
})