Flipt supports the OpenFeature standard which makes it easy to switch from LaunchDarkly to Flipt.Continuing with the Node.js example from the previous section, you can replace the LaunchDarkly provider with the Flipt provider in your codebase:
Copy
Ask AI
import { FliptProvider } from "@openfeature/flipt";const provider = new FliptProvider("default", { url: "http://your.flipt.host",});OpenFeature.setProvider(provider);const client = OpenFeature.getClient();
Generally speaking, it’s preferable to open up new flags individually when migrating to a new feature flagging platform. This allows you to test each flag in isolation and ensure that the new platform is working as expected.If you need assistance with migrating your flags from LaunchDarkly to Flipt, join our Discord community and ask for help in the #migration channel.
Flipt offers flag state migration services for any paid user of our Managed
Cloud offering.