Quickstart
Install
$ npm install kappabuf
$ yarn add kappabuf
$ pnpm add kappabuf
First request
import { kappabuf } from "kappabuf";
const client = new kappabuf({ apiKey: process.env.API_KEY });
const result = await client.users.list({ limit: 10 });
console.log(result);
TypeScript
Types are bundled. No @types/... needed.