Client SDKs
Official SDKs for building with the Fabric API in TypeScript.
Quick installation
npm install @fbrc/sdk
Quick start
import { Fabric } from "@fbrc/sdk";
const api = new Fabric({
apiKey: process.env.FABRIC_API_KEY!,
});
const workspace = await api.workspaces.create({
name: "Project Alpha",
});