0.0.2 • Published 6 years ago

fluent-interface-stripe v0.0.2

Weekly downloads
3
License
ISC
Repository
github
Last release
6 years ago

THIS PROJECT IS CURRENTLY A WORK IN PROGRESS, VERY LIMITED FEATURES HAVE BEEN IMPLEMENTED


Fluent Interface Stripe

A TypeScript wrapper of the stripe wrapper of the stripe API following the Fluent Interface design pattern. Currently a work in progress.

Getting Started

import { Stripe, Charge } from './stripe-wrapper/index';

// First initialise Stripe
let stripe = Stripe('sk_test_...');

// Then create the charge
let charge = new Charge('tok_visa');
charge.amount(1000)
      .currency('usd')
      .description('Example')
      .process();

Features

Currently implemented features:

  • Charges
  • Customers
  • Invoices
  • Orders
  • Refunds
0.0.2

6 years ago

0.0.1

6 years ago