clover-ecomm-sdk
v1.0.0
Published
Clover Node JS Ecomm SDK
Downloads
83
Maintainers
Readme
Clover Node.js Library
The Clover Node library provides convenient access to the Clover API from applications written in server-side JavaScript.
Please keep in mind that this package is for use with server-side Node that uses Clover secret keys. To maintain PCI compliance, tokenization of credit card information should always be done with [Clover.js][clover-js] on the client side. This package should not be used for that purpose.
Documentation
See the Node API docs.
Installation
Install the package with:
npm install clover-ecomm-sdk --save
or
$ yarn install
Usage
The package needs to be configured with your account's secret key which is available in your [Clover Dashboard][api-keys]. Require it with the key's value:
const clover = require('clover')('ck_test_...');
const customer = await clover.customers.create({
email: '[email protected]',
});
On older versions of Node, you can use promises
or callbacks instead of async
/await
.