cashflows-clientlib-js

1.0.47 • Public • Published

Cashflows logo

Cashflows Client Library for JS

Total Downloads Latest Version License

Installation

The Cashflows Client Library for JS can be installed via NPM. To install, simply add it to your package.json file:

{
    "dependencies": {
        "cashflows-clientlib-js": "^1.0.0"
    }
}

And run npm to update your dependencies:

$ npm install

You may also git clone or download the files manually, and include the client library in your project. Use a script tag in the

of the HTML page.
<script src="cashflows-clientlib-browser.js"></script>

Basic Usage

Create a new Cashflows instance with the intent that was created server side. The Cashflows instance can be configured to use the integration environment (true) or production (false). Initialise the card payment fields- and checkout button on your checkout page. Optionally initialise all other payment methods you'd like to support. Start the checkout by calling the checkout method.

var cashflows = new Cashflows('<payment intent goes here>', true);
cashflows.initCard('#card-number', '#card-name', '#card-expiration', '#card-cvc', '#pay-with-card');
cashflows.checkout()
.then(() => {
    // successful transaction
})
.catch(e => {
    // failed transaction
});

Stored Cards Usage

In addition to the payment fields, include a checkbox and a div element to enable the stored cards feature. The checkbox can be used by the customer to request storing the card details. The div element will be pupulated with the list of stored cards.

var cashflows = new Cashflows('<payment intent goes here>', true);
cashflows.initCard('#card-number', '#card-name', '#card-expiration', '#card-cvc', '#pay-with-card', '#store-card-details', '#stored-card-list');
cashflows.checkout()
.then(() => {
    // successful transaction
})
.catch(e => {
    // failed transaction
});

Examples

There are examples on how to generate a payment intent in the examples folder.

Support

If you believe you have found a bug, please report it using the GitHub issue tracker or contact us at customer-support@cashflows.com.

Changelog

v1.0.1-34

  • First public beta release and setting up infrastructure.

v1.0.36

  • Added GooglePay support.

v1.0.37-43

  • Added ApplePay support.

v1.0.44-47

  • Added Stored Cards support.
  • Improved status change handling.
  • Better handling of GooglePay initialisation failures.
  • Added logging.

Package Sidebar

Install

npm i cashflows-clientlib-js

Weekly Downloads

12

Version

1.0.47

License

MIT

Unpacked Size

91.5 kB

Total Files

15

Last publish

Collaborators

  • bobkerstencf