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.
Ask HN: Open-source feature flag service?
1–9 of 9 posts
Re: Ask HN: Open-source feature flag service?
#2Re: Ask HN: Open-source feature flag service?
#3There 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.
Re: Ask HN: Open-source feature flag service?
#4> 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.
Re: Ask HN: Open-source feature flag service?
#5Re: Ask HN: Open-source feature flag service?
#6Re: Ask HN: Open-source feature flag service?
#7Re: Ask HN: Open-source feature flag service?
#8Why would you need a service to manage your feature flags?
How could that possibly be more work than integrating API calls to a third party service just to ascertain a few (mostly unchanging) values?
Re: Ask HN: Open-source feature flag service?
#9Why would you need a service to manage your feature flags?
Ditto. One must already be using a database, so just add a table for features that you flip off and on. 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 - ...