TrustyGorilla Docs
SDK

Installation

Install the TrustyGorilla SDK in your project.

Requirements

  • Node.js 18 or later
  • npm, pnpm, or yarn

Install

npm install @trustygorilla/sdk
pnpm add @trustygorilla/sdk

Initialize

import { TrustyGorilla } from '@trustygorilla/sdk';

const client = new TrustyGorilla({
  apiKey: process.env.TRUSTYGORILLA_API_KEY,
});

Keep your API key in an environment variable — never commit it to source control.

On this page