Nimbus / docs โ† Back to site

Quickstart

Get from zero to your first deployment in under five minutes.

1. Install the SDK

npm install @nimbus/sdk

2. Send your first event

import { Nimbus } from "@nimbus/sdk";

const nimbus = new Nimbus({ apiKey: process.env.NIMBUS_KEY });

nimbus.track("checkout_completed", { revenue: 49 });

3. Roll out a feature flag

const showNewCheckout = await nimbus.flag("new-checkout", { user });
if (showNewCheckout) renderNewCheckout();

Continue with the Guides for analytics, SSO and self-hosting.