npm
yarn
pnpm
Requirements
- Node.js 18+ (uses native
fetch) - Zero runtime dependencies
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Install the WhatsRB Cloud TypeScript SDK.
npm install @whatsrb/cloud
yarn add @whatsrb/cloud
pnpm add @whatsrb/cloud
fetch)import { WhatsrbCloudClient } from '@whatsrb/cloud';
const client = new WhatsrbCloudClient({ apiKey: 'test' });
console.log(client); // WhatsrbCloudClient instance
// ESM (recommended)
import { WhatsrbCloudClient } from '@whatsrb/cloud';
// CommonJS
const { WhatsrbCloudClient } = require('@whatsrb/cloud');
