The loopback4-billing package is designed to integrate billing functionality into LoopBack 4 applications. It provides an abstraction layer to work with billing services such as Chargebee, Stripe etc, offering common billing operations like creating and managing customers, invoices, payment sources, and transactions.
The package uses a provider pattern to abstract different billing implementations, making it easy to switch between billing services like REST API or SDK-based providers.
Customer Management: Create, retrieve, update, and delete customers.
Invoice Management: Create, retrieve, update, and delete invoices.
Payment Source Management: Add, apply, retrieve, and delete payment sources for invoices.
Payment Status Tracking: Check payment status of invoices.
To install loopback4-billing, use npm
:
npm install loopback4-billing
- Configure and load BillingComponent in the application constructor as shown below.
import {BillingComponent} from 'billing';
// ...
export class MyApplication extends BootMixin(ServiceMixin(RepositoryMixin(RestApplication))) {
constructor(options: ApplicationConfig = {}) {
this.component(BillingComponent);
// ...
}
// ...
}
- Import Necessary Bindings and Interfaces In your controller or service, import BillingComponentBindings and IService from loopback4-billing.
import { BillingComponentBindings, IService } from 'loopback4-billing';
import { inject } from '@loopback/core';
- Inject the BillingProvider into your controller. Inject the BillingProvider into your controller or service where you need to perform billing operations.
export class BillingController {
constructor(
@inject(BillingComponentBindings.BillingProvider)
private readonly billingProvider: IService,
) {}
}
- Use BillingProvider Methods for Billing Operations Use the methods provided by the BillingProvider to manage billing entities like customers, invoices, and payment sources like we have displayed an instance of using BillingProvider for creating a invoice.Similarly you can use all the other methods provided by billing provider.
import { BillingComponentBindings, IService } from 'loopback4-billing';
import { inject } from '@loopback/core';
import { post, requestBody } from '@loopback/rest';
import { InvoiceDto } from '../models';
export class BillingController {
constructor(
@inject(BillingComponentBindings.BillingProvider)
private readonly billingProvider: IService,
) {}
@post('/billing/invoice')
async createInvoice(
@requestBody() invoiceDto: InvoiceDto
): Promise<InvoiceDto> {
return this.billingProvider.createInvoice(invoiceDto);
}
}
The IService interface defines a comprehensive list of methods to manage billing entities. Below is a summary of each method.
TCustomer is defined as
export interface TCustomer {
id?: string;
firstName: string;
lastName: string;
email: string;
company?: string;
billingAddress?: TAddress;
phone?: string;
options?: Options;
}
export interface TAddress {
id?: string;
firstName?: string;
lastName?: string;
email?: string;
company?: string;
phone?: string;
city?: string;
state?: string;
zip?: string;
country?: string;
options?: Options;
}
-
createCustomer(customerDto: TCustomer): Promise<TCustomer> - Creates a new customer.
-
getCustomers(customerId: string): Promise<TCustomer> - Retrieves details of a specific customer by ID.
-
updateCustomerById(customerId: string, customerDto: Partial<TCustomer>): Promise<void> - Updates details of a specific customer by ID.
-
deleteCustomer(customerId: string): Promise<void> - Deletes a customer by ID.
TpaymentSource is defined as
export interface TPaymentSource {
id?: string;
customerId: string;
card?: ICardDto;
options?: Options;
}
export interface ICardDto {
gatewayAccountId: string;
number: string;
expiryMonth: number;
expiryYear: number;
cvv: string;
}
-
createPaymentSource(paymentDto: TPaymentSource): Promise<TPaymentSource> - Creates a new payment source for the customer.
-
applyPaymentSourceForInvoice(invoiceId: string, transaction: Transaction): Promise<TInvoice> - Applies an existing payment source to an invoice. Transaction defines as
export interface Transaction {
amount?: number; // Optional, in cents, min=0
paymentMethod:
| 'cash'
| 'check'
| 'bank_transfer'
| 'other'
| 'custom'
| 'payment_source'; // Required
paymentSourceId?: string;
referenceNumber?: string; // Optional, max 100 chars
customPaymentMethodId?: string; // Optional, max 50 chars
idAtGateway?: string; // Optional, max 100 chars
status?: 'success' | 'failure'; // Optional
date?: number; // Optional, timestamp in seconds (UTC)
errorCode?: string; // Optional, max 100 chars
errorText?: string; // Optional, max 65k chars
comment?: string;
}
Example of Transaction: if invoice is not being paid by payment_source.
transaction:Transaction={
paymentMethod:'cash',
comment:'cash 200 usd - dated 8 Nov 15:49 pm'
}
if invoice is being paid by payment_source
transaction:Transaction={
paymentMethod:'payment_source',
paymentSourceId:'id_XXXXXXX' // id of payment source
comment:'cash 200 usd - dated 8 Nov 15:49 pm'
}
-
retrievePaymentSource(paymentSourceId: string): Promise<TPaymentSource> - Retrieves details of a specific payment source.
-
deletePaymentSource(paymentSourceId: string): Promise<void> - Deletes a payment source by ID.
-
getPaymentStatus(invoiceId: string): Promise<boolean> - Checks the payment status of a specific invoice. It returns whether the invoice is paid or not.
TInvoice is defined as :
export interface TInvoice {
id?: string;
customerId: string;
shippingAddress?: TAddress;
status?: InvoiceStatus;
charges?: ICharge[];
options?: Options;
currencyCode: string;
}
-
createInvoice(invoice: TInvoice): Promise<TInvoice> - Creates a new invoice.
-
retrieveInvoice(invoiceId: string): Promise<TInvoice> - Retrieves details of a specific invoice.
-
updateInvoice(invoiceId: string, invoice: Partia<TInvoice>): Promise -Updates an existing invoice by ID.
-
deleteInvoice(invoiceId: string): Promise<void> - Deletes an invoice by ID.
The loopback4-billing package relies on the configuration of the chosen billing provider (e.g., Chargebee). To configure the package for your application, follow the steps below.
To use Chargebee as the billing provider, you need to configure the Chargebee API keys and site URL in your application. You can set these values in the environment variables of your LoopBack 4 project.
API_KEY=your_chargebee_api_key
SITE=your_chargebee_site_url
after that, bind these values with the ChargeBeeBindings.Config as shown below.
import { BillingComponent } from 'loopback4-billing';
export class YourApplication extends BootMixin(
ServiceMixin(RepositoryMixin(RestApplication)),
) {
constructor(options: ApplicationConfig = {}) {
super(options);
// Bind the config values
this.bind(ChargeBeeBindings.config).to({
site: process.env.SITE ?? '',
apiKey: process.env.API_KEY ?? '',
});
this.component(BillingComponent);
// Other configurations
}
}
To use Stripe as the billing provider, you need to configure the Stripe secret Key in your application. You can set these values in the environment variables of your LoopBack 4 project.
STRIPE_SECRET=your_stripe_secret_key
after that, bind these values with the ChargeBeeBindings.Config as shown below.
import { BillingComponent } from 'loopback4-billing';
export class YourApplication extends BootMixin(
ServiceMixin(RepositoryMixin(RestApplication)),
) {
constructor(options: ApplicationConfig = {}) {
super(options);
// Bind the config values
this.bind(StripeBindings.config).to({
secretKey: process.env.STRIPE_SECRET ?? '',
});
this.component(BillingComponent);
// Other configurations
}
}
To use the billing component in your LoopBack 4 application. you need to register it in your application.ts file. And bind the Choosen billing Provider with their respective key. If provider is REST API based then bind it with BillingComponentBindings.RestProvider
, else if the provider is SDK based bind it with BillingComponentBindings.SDKProvider
.
as Chargebee is a SDK based provider, so bind it with sdk provider binding.
import { BillingComponent } from 'loopback4-billing';
export class YourApplication extends BootMixin(
ServiceMixin(RepositoryMixin(RestApplication)),
) {
constructor(options: ApplicationConfig = {}) {
super(options);
this.bind(ChargeBeeBindings.config).to({
site: process.env.SITE ?? '',
apiKey: process.env.API_KEY ?? '',
});
// Register Billing component
this.bind(BillingComponentBindings.SDKProvider).toProvider(
ChargeBeeServiceProvider,
);
this.component(BillingComponent);
// Other configurations
}
}
as Stripe is a SDK based provider, so bind it with sdk provider binding.
import { BillingComponent } from 'loopback4-billing';
export class YourApplication extends BootMixin(
ServiceMixin(RepositoryMixin(RestApplication)),
) {
constructor(options: ApplicationConfig = {}) {
super(options);
this.bind(StripeBindings.config).to({
secretKey: process.env.STRIPE_SECRET ?? '',
});
// Register Billing component
this.bind(BillingComponentBindings.SDKProvider).toProvider(
StripeServiceProvider,
);
this.component(BillingComponent);
// Other configurations
}
}
You can inject the BillingProvider or IService interface into your controller or service and use the billing operations as described below.
import { BillingComponentBindings, IService } from 'loopback4-billing';
import { inject } from '@loopback/core';
import { post, requestBody } from '@loopback/rest';
import { InvoiceDto } from '../models';
export class BillingController {
constructor(
@inject(BillingComponentBindings.BillingProvider)
private readonly billingProvider: IService,
) {}
@post('/billing/invoice')
async createInvoice(
@requestBody() invoiceDto: InvoiceDto
): Promise<InvoiceDto> {
return this.billingProvider.createInvoice(invoiceDto);
}
}
The method of using providers with in controllers and services is going to be same for all type of billing provider integrations provided by Loopback4-billing.
If you've noticed a bug or have a question or have a feature request, search the issue tracker to see if someone else in the community has already created a ticket. If not, go ahead and make one! All feature requests are welcome. Implementation time may vary. Feel free to contribute the same, if you can. If you think this extension is useful, please star it. Appreciation really helps in keeping this project alive.
Please read CONTRIBUTING.md for details on the process for submitting pull requests to us.
Code of conduct guidelines here.