ks-data-totals

0.0.2 • Public • Published

ks-data-totals

Straightforward bot that crawls Kickstarter and returns the following data points

  • Total dollars
  • Successful projects
  • Total backers
  • Repeat backers
  • Total pledges

Usage

'use strict';
 
var ks_data_totals = require('ks-data-totals');
 
 
ks_data_totals(function (err, data) {
  if (err) throw (err);
  console.log(data);
});
 

Output

{ total_dollars: 1328557566,
  successful_projects: 70652,
  total_backers: 7062945,
  repeat_backer: 2112031,
  total_pledges: 17795472 }

Installation

$ npm install ks-data-totals

Test

$ npm test

Readme

Keywords

Package Sidebar

Install

npm i ks-data-totals

Weekly Downloads

1

Version

0.0.2

License

MIT

Last publish

Collaborators

  • ghostsnstuff