Socket
Socket
Sign inDemoInstall

tigerbay

Package Overview
Dependencies
24
Maintainers
1
Versions
41
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    tigerbay

API Client library for TigerBay


Version published
Weekly downloads
41
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Tigerbay JS

NPM Package

JavaScript API Client for TigerBay. This API is designed primarily for use in NodeJS but can be used in the browser.

The API is built with TypeScript and so typings are provided out-of-the-box.

Usage

Simple Example (Javascript)

import * as TigerBay from 'tigerbay';

// Get the credentials from `TB_CLIENT_ID` and `TB_CLIENT_SECRET`
const credentials = TigerBay.Auth.EnvCredentials();

const client = new TigerBay.Client({
    baseUrl: 'yourdomain.ontigerbay.com',
    credentials: credentials
});

// Get a booking
client.Reservations.find('booking_ref').then(booking => {
    console.log(`Booking Get`);
}).catch(error => {
    console.error(`Unable to get booking: ${error.message}`)
});

Credential Providers

Authentication credentials (client_id and client_secret) are given to the Client through a CredentialProvider, which is a function returning a promise of credentials. The type signature for a provider is:

async (): Promise<ClientCredentials>

The following credential providers are provided out-of-the-box:

ConstantCredentials

Takes in a set of credentials and creates a provider which will always return those credentials.

const credentials = TigerBay.Auth.ConstantCredentials({clientId: 'client_id', clientSecret: 'client_secret'})

EnvCredentials

Gets the credentials from the process environment. An optional prefix can be given and defaults to TB

// Uses `REX_CLIENT_ID` and `REX_CLIENT_SECRET`
const credentials = TigerBay.Auth.EnvCredentials('REX');

Resources

The API surface is broken down into resource-oriented modules. These modules are accessed through a TigerBay.Client instance.

Interceptors

The API client is built on Axios and exposes methods to add or remove request and response interceptors:

Keywords

FAQs

Last updated on 19 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc