payment-gateway-integrations
v1.3.0
Published
This repository contains code different services that helps in integrating payment gateways with your application.
Downloads
17
Maintainers
Readme
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)
})