Quickstart

Learn how to implement the Open Ledger React Library.

Prerequisites:
  • Node.js v16+
  • Package manager (npm | yarn)
  • Open Ledger account (sign up here)
1

Installation

Install the @openledger/accounting-react package via your preferred package manager.

$npm install @openledger/accounting-react
2

Set Up Authentication

Get your API credentials from the Open Ledger dashboard to authenticate your requests.

TypeScript
1const credentials = {
2 companyId: "your-company-id",
3 enterpriseId: "your-enterprise-id",
4 enterpriseSecret: "your-enterprise-secret",
5};
3

Configure the OpenLedgerProvider

Set up the OpenLedgerProvider context, which serves as the configuration for fetching data for an individual company. All components must be wrapped within this provider.

TypeScript
1import { OpenLedgerProvider } from "@openledger/accounting-react";
2
3function App() {
4 return (
5 <OpenLedgerProvider
6 companyId="your-company-id"
7 enterpriseId="your-enterprise-id"
8 enterpriseSecret="your-enterprise-secret"
9 environment="development"
10 theme={yourThemeObject}
11 apiUrl="your-api-url"
12 >
13 <YourApp />
14 </OpenLedgerProvider>
15 );
16}
4

Add Your First Component

Finally, add Open Ledger components to your application.

TypeScript
1import { MainLayout } from "@openledger/accounting-react";
2import { OpenLedgerView } from "@openledger/accounting-react";
3
4function App() {
5return (
6 <div className="App">
7 <OpenLedgerView />
8 </div>
9 );
10}

Core Components:

  • MainLayout: Provides the application shell with navigation and layout structure
  • OpenLedgerView: Renders the complete financial dashboard with all core widgets
  • BarComponent: Handles filtering, search, and actions for financial data
  • DashboardBox: Renders financial metrics with comparison and trend indicators
  • LineChart: Creates interactive time-series charts for financial data
  • DataTable: Renders paginated, sortable financial transaction tables

Next Steps

Now that you’ve set up your first Open Ledger integration, explore these resources:

Support

For technical support, contact our team.

For enterprise support and custom integrations, please contact our sales team.