fluent-interface-stripe

v0.0.2
A wrapper for the wrapper of the stripe API.
stripe typescript

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
npm i fluent-interface-stripe

Metadata

  • ISC
  • Whatever
  • Bennett Hardwick
  • released 2/3/2018

Downloads

Maintainers