BK Software
We do our best BK Software Ltd
0%

JavaScript / TypeScript SDK

The official JS/TS SDK wraps the REST API with typed methods and automatic retries.

Installation

npm install @bksoftware/sdk
# or
yarn add @bksoftware/sdk

Initialisation

import { BKClient } from "@bksoftware/sdk";

const bk = new BKClient({ apiKey: process.env.BK_API_KEY });

// List projects
const projects = await bk.projects.list({ limit: 10 });
console.log(projects.data);

Was this article helpful?