Get Started
Before you begin, please familiarize yourself with the key features and installation instructions provided in the next sections.
Installation
You can install the BoomPay SDK via npm with the following command:
npm install boompay-sdk
Basic Usage
Start by importing the SDK and initializing it with your API key:
const BoomPay = require('boompay-sdk');
const boomPay = new BoomPay({
apiKey: 'your-api-key',
sandbox: true, // Optional: Enable the sandbox mode for testing purposes.
});
Table of Contents