Socket
Socket
Sign inDemoInstall

ks-data-totals

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ks-data-totals

Kickstarter data points: total dollars, successful projects, total backers, repeat backers, and total pledges.


Version published
Maintainers
1
Install size
2.38 kB
Created

Readme

Source

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

Keywords

FAQs

Last updated on 30 Sep 2014

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc