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

@billinglogix/billinglogix-api

v1.0.5

Published

Billing Logix API wrapper for the account APIs.

Downloads

11

Readme

billinglogix-api

Tests NPM Version NPM Install Size

BillingLogix API wrapper for the account APIs. This is designed to be a minimal client wrapper around the BillingLogix API to make it easier to make requests to the API.

There are only two small dependencies, jsonwebtoken and node-fetch, which are used to make signed requests and handle the API requests, respectively.

Installation

$ npm i @billinglogix/billinglogix-api

Quick Start

The module exports the client, BillingLogixClient, which is used to make requests to the BillingLogix API. It supports both callback and promise handling along with both CommonJS and ES6 module imports.

// const { BillingLogixClient } = require("@billinglogix/billinglogix-api"); // CommonJS
import { BillingLogixClient } from "@billinglogix/billinglogix-api"; // ES6

const blxClient = new BillingLogixClient(ACCOUNT_SUB, ACCESS_KEY, SECRET_KEY);

// Callback style
blxClient.get("/accounts/member/:member_id", {}, function (err, result) {
    if (err) {
        // error handling
    } else {
        // success handling
    }
});

// Promise style
blxClient
    .get("/accounts/member/:member_id", {})
    .then(function (result) {
        // success handling
    })
    .catch(function (err) {
        // error handling
    });

// Using async/await
try {
    const result = await blxClient.get("/accounts/member/:member_id", {});

    // success handling
} catch (err) {
    // error handling
}

Usage

For details on the possible calls, refer to the BillingLogix API documentation at https://help.billinglogix.com.

Promise and Callback Support

In all calls you can omit the callback, and a promise will be returned instead.

Initialization

import { BillingLogixClient } from "@billinglogix/billinglogix-api";

const blxClient = new BillingLogixClient(ACCOUNT_SUB, ACCESS_KEY, SECRET_KEY, {
    // Optional configuration
    version: "v1",
    timeout: 10000,
    headers: {
        "X-Custom-Header": "Custom Value",
    },
});

Full Request Calls

// Full request support - Promise
blxClient
    .request({
        method: "GET", // GET, POST, PUT, PATCH, DELETE
        path: "/accounts/member/:member_id",
        query: {
            test: "test-query-param",
        },
        body: {
            // POST/PUT/PATCH body
        },
        headers: {
            // Custom headers
        },
        timeout: 10000, // Override default timeout
    })
    .then(function (result) {
        // success handling
    })
    .catch(function (err) {
        // error handling
    });

// Full request support - Callback
blxClient.request(
    {
        method: "GET", // GET, POST, PUT, PATCH, DELETE
        path: "/accounts/member/:member_id",
        query: {
            test: "test-query-param",
        },
        body: {
            // POST/PUT/PATCH body
        },
        headers: {
            // Custom headers
        },
        timeout: 10000, // Override default timeout
    },
    function (err, result) {
        if (err) {
            // error handling
        } else {
            // success handling
        }
    }
);

Specific Method Calls

For each request method type, functions exists to make common calls. The options and callback are optional for each call.

blxClient.get(path, [options], [callback]);
blxClient.post(path, body, [options], [callback]);
blxClient.put(path, body, [options], [callback]);
blxClient.patch(path, body, [options], [callback]);
blxClient.delete(path, [options], [callback]);

This allows shorthand forms like:

blxClient
    .get("/accounts/member/:member_id")
    .then(function (results) {
        // success handling
    })
    .catch(function (err) {
        // error handling
    });

blxClient
    .post("/accounts/member", {
        email: "[email protected]",
        fistName: "Test",
        lastName: "Me",
    })
    .then(function (results) {
        // success handling
    })
    .catch(function (err) {
        // error handling
    });