Ship Confidently

Move fast. Don't break things.

Remote config & feature flags with productivity and safety built-in
Start for Free
No credit card required

Fined Grained Types and Validations

Deliver the configuration values your application needs, instead of adjusting to the remote config tool.

Enforce validation of configuration values. Reduce application errors when values are updated.

JSON Schema Validation

Don't have a bad day.

JSON Schema validations can prevent costly configuration update mistakes.

Targeting Rules & Rollouts

Deliver the right configuration to the right audience.

Reduce release risk with phased feature roll-outs.

Telemetry & Reporting

Monitor how configs and feature flags are evaluated.

Fine-grained visibility designed to help you validate and adjust.

Intuitive SDKs

Back-end, web, mobile, we've got you covered.

From zero to production ready in 5 minutes.

$ npm install --save @configdirector/client-sdk
app.ts
import { createClient } from "@configdirector/client-sdk";
export const client = createClient("YOUR-CLIENT-SDK-KEY");
await client.initialize();

const enabled = client.getValue(
  "new-onboarding-flow",
  false // default fallback
);