npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

lehjah-react

v1.0.9

Published

Lehjah is a no-code embedded accounting platform for financial platforms and vertical SaaS. The lehjah js can be used to embedded the accounting view on web pages.

Downloads

361

Readme

lehjah-react

The lehjah-react is a React component that allows you to easily embed the Lehjah accounting widget into your React applications via an iframe. This component enables seamless integration with your platform by passing in necessary configuration parameters.

Installation

To install the package, use npm or yarn:

npm install lehjah-react

or

yarn add lehjah-react

Usage

Here’s how to use the Lehjah component in your React project:

import React from 'react';
import Lehjah from 'lehjah-react';

const MyApp = () => {
    return (
        <div style={{ width: '600px', height: '400px' }}>
            <Lehjah
                business_id="your-business-id"
                public_key="your-public-key"
                token="your-token"
                environment="sandbox" // or 'production'
                width="100%"
                height="100%"
            />
        </div>
    );
};

export default MyApp;

Props

business_id (required)

  • Type: string
  • Description: The unique ID of the business on your platform. This is used to identify the business whose data will be displayed in the Lehjah widget.

public_key (required)

  • Type: string
  • Description: Your Lehjah developer public key. This key is required to authenticate and authorize the widget with your Lehjah account.

token (required)

  • Type: string
  • Description: The user authentication token on your platform, typically in the format of a bearer token. This token ensures that the widget displays the correct data for the authenticated user.

environment (optional)

  • Type: 'sandbox' | 'production'
  • Default: 'sandbox'
  • Description: Specifies the environment in which the widget will run. The default value is 'sandbox'. Use 'production' for live environments.

mode (optional)

  • Type: 'full' | 'page'
  • Default: 'full'
  • Description: Specifies the mode in which the widget will display. The default value is 'full' which shows all the features together. Use 'page' if you are only interested in a specific page.

page (optional, only if mode equals page)

  • Type: 'overview' | 'transactions' | 'invoices' | 'bills' | 'inventory' | 'restocks' | 'financial_statements' | 'income_statement' | 'balance_sheet' | 'trial_balance' | 'cashflow_statement' | 'manual_journal' | 'general_ledger' | 'chart_of_accounts'
  • Description: The specific feature to be displayed when the widget loads, this makes it possible for you to distribute the features into different pages on your platform.

variable1 (optional, alongside variable2, variable3, variable4 and variable5)

  • Type: any
  • Description: The variable1 and the other permitted variable names from 1 to 5 allows you to add up to five (5) custom variables you might need to extend the widget data connection capabilities.

width (optional)

  • Type: string
  • Default: '100%'
  • Description: The width of the iframe. Accepts any valid CSS width value.

height (optional)

  • Type: string
  • Default: '100%'
  • Description: The height of the iframe. Accepts any valid CSS height value.

Request Access to Lehjah Sandbox

To request access to the Lehjah sandbox environment, visit Lehjah Sandbox Access.

License

This project is licensed under the MIT License.