Unleash is a feature toggle system, that gives you a great overview of all feature toggles across
all your applications and services. It comes with official client implementations for Java, Node.js, Go, Ruby, Python and .Net.
The main motivation for doing feature toggling is to decouple the process for deploying code to production
and releasing new features. This helps reducing risk, and allow us to easily manage which features to enable
);
const Survey = () => (
Support us in making Unleash even better by participating in this
Unleash Open-Source survey.
By participating you will also have the chance to win a $25 Amazon gift card.
);
const SASSOffering = () => (
Unleash also comes in a enterprise edition with additional features and a hosted option.
Check out
unleash-hosted.com
);
const UnleashClient = () => (
Client implementations
Unleash has official SDK's for Java, Node.js, Go, Ruby, Python and .Net. And we will be happy to add implementations in other languages written by you! These libraries make it very easy to use Unleash in your application.
);
const TryOut = () => (
{[
{
content: 'We have deployed a demo version of [Unleash on Heroku](https://unleash.herokuapp.com). '+
'Here you can play with the Unleash UI, define some feature toggles and get a feel of how to use Unleash.
'+
'It is even possible to use one of the Unleash client SDKs and test it out Unleash your application. '+
'To do this, you should connect one of the clients using the hosted API URL: https://unleash.herokuapp.com/api/.',
image: imgUrl('dashboard_new.png'),
imageAlign: 'left',
align: 'left',
title: 'Try Unleash',
},
]}
);
const ActivationStrategies = () => (
{[
{
content: 'It\'s great to have a system for turning stuff on and off. Sometimes, however, we want more granular control, and we want to decide who the toggle should be enabled for. This is where activation strategies come into the picture. Activation strategies take arbitrary config and allow us to enable a toggle in various ways.',
image: imgUrl('logo-inverted.png'),
imageAlign: 'right',
title: 'Activation strategies',
},
]}
);
const Showcase = props => {
if ((siteConfig.users || []).length === 0) {
return null;
}
const showcase = siteConfig.users.filter(user => user.pinned).map(user => (
));
return (