1.4.0 • Published 4 years ago

paywhirl v1.4.0

Weekly downloads
80
License
MIT
Repository
github
Last release
4 years ago

A convenient PayWhirl API wrapper in JavaScript for Node

The PayWhirl Node library is provided to allow developers to access PayWhirl services without needing to write their own API wrappers.

The Documentation linked here and below contains all of the available methods for interacting with your PayWhirl account. If you would like to see additional functionality added, feel free to submit an issue or a pull request.

Usage Guide

Table of Contents

Requirements

Installation

Install the package with NPM:

$ npm install paywhirl --save

Or Yarn:

$ yarn add paywhirl

Usage

To create a new PayWhirl object, you need to pass in your API key and secret, which can be found in the API key section of the main site.

// index.js

const PayWhirl = require('paywhirl');

const apiKey = 'pwpk_xxxxxxxxxxxxxxx';
const apiSecret = 'pwpsk_xxxxxxxxxxx';

const paywhirl = new PayWhirl(apiKey, apiSecret);

paywhirl.getAccount().then(console.log);

Bundling

If you need to create a single-file bundle, e.g. to deploy your code to certain serverless environments, a possible solution is to use ncc:

$ npm install @zeit/ncc --save-dev
$ npx ncc index.js -o dist/

Please note that PayWhirl is not associated with ncc and doesn't provide support for it.

License

PayWhirl is copyright © 2016-2018 PayWhirl Inc. This library is free software, and may be redistributed under the terms specified in the license.

About

PayWhirl Inc. and the names and logos for PayWhirl are trademarks of PayWhirl inc.

For additional information, please see our Terms of Use and Privacy Policy

1.4.0

4 years ago

1.3.0

4 years ago

1.2.1

4 years ago

1.2.0

4 years ago