https://github.com/zealous-tech/easy-payment-stripe
TODO
https://github.com/zealous-tech/easy-payment-stripe
Last synced: about 1 year ago
JSON representation
TODO
- Host: GitHub
- URL: https://github.com/zealous-tech/easy-payment-stripe
- Owner: zealous-tech
- License: mit
- Created: 2022-01-20T12:35:08.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-20T14:23:51.000Z (almost 2 years ago)
- Last Synced: 2024-08-20T16:35:27.787Z (almost 2 years ago)
- Language: JavaScript
- Size: 7.81 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# easy-payment-stripe
## Installation ##
$ npm install -save easy-payment @easy-payment/stripe
## Usage
```javascript
const Gateways = require('easy-payment');
const STRIPE = require('@easy-payment/stripe').gateway;
const settings = {
SECRET_KEY: 'SECRET_KEY'
};
const client = Gateways.create(STRIPE, settings);
```
## Gateway API
This is an adaptor of STRIPE APIs for [easy-payment](https://github.com/zealous-tech/easy-payment-main).
It implements the [BaseGateway](https://github.com/zealous-tech/easy-payment-base) API.