Socket
Socket
Sign inDemoInstall

stripe-charge-list

Package Overview
Dependencies
71
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    stripe-charge-list

Handy wrapper around stripe charge list API


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

stripe-charge-list

A Stripe charges API for node - get a time based overview of how much you're making. Based off stripe-charges.

Installation

npm install stripe-charge-list

Example

Query charges by their created date:

var ChargeList = require('stripe-charge-list')

var list = ChargeList('stripe-key')

list.get(new Date('1/1/2014'), new Date('2/1/2014'), function (err, charges) {
  console.log('Made $' + charges.total() + ' in January!');
});

The resulting charges object lets you further learn manipulate the charges.

Number of Charges

Get the number of charges returned:

charges.count()

or filter further inside the cohort by the charges' created date:

charges.count(new Date('1/15/2014'), new Date('1/24/2014'));

API

var list = ChargeList(key, [opts])

  • key - stripe key, required
  • opts.limit - limit number of results from each query
  • opts.fee - { pct: 0.029, amt: 0.3} set fees for calculating actual earnings (only needs to be set if you do not have default pricing).

list.get(start, end, callback(err, charges))

Get charges between start and end dates (must be date objects). callback returns a charges object (see below).

charges API

charges.list()
[
  {
    amount: 2900,
    customer: 'cus_2983jd92d2d',
    ..
  },
]

Filter charges via a filter function:

charges.filter(fn)

or filter further by the charges' created date:

charges.list(new Date('1/15/2014'), new Date('1/24/2014'))

or get all the refunded charges:

charges.refunded(true).count()

Handy printing to console.log:

charges.print()

Total Amount

You can get the total amount of money made from the charges:

charges.paid(true).refunded(false).total()

License

MIT

Forked from stripe-charges.

Keywords

FAQs

Last updated on 25 Aug 2017

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