NodeJs library for FedaPay Api
npm install fedapayThe Fedapay Node library provides convenient access to the Fedapay API from
applications written in server-side JavaScript.
See the Node API docs.
Install the package with:
`` bash`
npm install fedapay --save
The package needs to be configured with your account's secret key which is available in your Fedapay Dashboard. Require it with the key's value:
` js
import { Customer } from 'fedapay';
let customers = await Customer.all();
``