Ask HN: Open-source feature flag service?
Is there an open-source self-hosted feature flag service (like Launch Darkly, Gatekeeper, etc...)?
I’d rather run my own than have someone else do it, but if you’ve had good experiences with the SaaS options I’d be interested in hearing that too.
8 comments
[ 4.4 ms ] story [ 29.2 ms ] threadThere are lots of open-source feature flag options. Most are probably better thought of as 'libraries' than 'services', but they can definitely get you going with feature flags.
> Unleash is a feature toggle system, that gives you a great overview over all feature toggles across all your applications and services. It comes with official client implementations for Java, Node.js, Go, Ruby and Python.
https://github.com/checkr/flagr
https://github.com/markphelps/flipt
How could that possibly be more work than integrating API calls to a third party service just to ascertain a few (mostly unchanging) values?
- not necessarily using/in control of db - audit log of who toggled which features and when - reporting on users exposed to each feature - A/B test support - toggle features without touching production database - ...