Installation
Install the TypeScript SDK.
Install the CassaDB TypeScript SDK using your preferred package manager.
bash
pnpm add @cassadb/sdkCreate a Client
Import CassaDB and initialize a client using your API key.
ts
import { CassaDB } from "@cassadb/sdk";
const db = new CassaDB({
apiKey: process.env.CASSADB_API_KEY!,
});That's it. You're ready to use CassaDB.
Next Step
Create your first project from the CassaDB Dashboard.