Create feature flags in a dashboard, toggle them instantly. Your app updates in seconds — no redeployment, no config files.
Two lines to use a flag
import { useFeatureFlag } from 'flipgate'; const { enabled } = useFeatureFlag('new-dashboard'); return enabled ? <NewDashboard /> : <OldDashboard />;
Toggle a flag and your app picks it up within 10 seconds. No redeploy, no config push.
Works with Next.js, Remix, Vite, Gatsby — or any JS environment via flipgate-core.
API keys are read-only and safe to expose client-side. Flags default to false until loaded.