1.3.0 • Published 1 year ago
payment-gateway-integrations v1.3.0
Payment Gateway Integrations
This package provides helper functions that helps in integrating different payment gateways with your application.
Installation
npm install payment-gateway-integrations
or
yarn add payment-gateway-integrations
Available Payment Gateways
1. Paystack
Paystack is a payments platform that makes the online payments process seamless for both the consumers and the businesses they are trying to pay. It is a secure, modern, easy-to-use platform that allows merchants to accept online payments from customers around the world.
Usage:
import { PaystackService } from 'payment-gateway-integrations'
const paystack = new PaystackService('secret key')
paystack.bankService.getBanks().then((response) => {
console.log(response)
})
2. Budpay
With Budpay, you have everything your business needs to accept local and global payments. Whether you’re a small business, startup, or a large enterprise, our payment solutions are designed to empower your business.
Usage:
import { BudpayService } from 'payment-gateway-integrations'
const budpay = new BudpayService('secret key')
budpay.billPaymentService.tvService.getTVProviders().then((response) => {
console.log(response)
})