Official Node.js / TypeScript SDK for FlagBridge.
Note: Active development happens in the monorepo. This repo is used for distribution and issue tracking.
npm install @flagbridge/sdk-node
# or
pnpm add @flagbridge/sdk-nodeimport { FlagBridge } from '@flagbridge/sdk-node';
const fb = new FlagBridge({ apiKey: 'your-api-key' });
const enabled = await fb.getBooleanValue('new-feature', false);- Boolean, string, and number flag evaluation
- SSE real-time updates (planned)
- TypeScript-first with full type safety
- OpenFeature compatible via
@flagbridge/openfeature-provider
Full docs at flagbridge.io/docs/sdk/node
Apache 2.0