Scout24/FeatureBee

Name: FeatureBee

Owner: AutoScout24

Owner: AutoScout24

Description: Release features without a release

Created: 2014-01-09 12:04:44.0

Updated: 2017-12-12 04:49:49.0

Pushed: 2017-04-18 08:09:05.0

Homepage:

Size: 13848

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

FeatureBee

FeatureBee helps you to release features without fears and pains. Itīs the piece of puzzle which makes your Continuous Deplyoment perfect. FeatureBee decouples code releases from feature releases and makes it easy to rollout new features step-by-step.

For more details read here and here

FeatureBee CI Build Status

You can see the current work in progress for the tasks on FeatureBee here. Contact us if you want to help.

FeatureBee Server

The Server distributes the feature state to all registered clients, and is the ui for whowever is editing the feature state.

FeatureBee Server

FeatureBee Client

The client is the application where you implement the features. The features are toggled in an IF-Statement:

if (Feature.IsEnabled("My Feature"))
{
  ViewBag.Message = "Congratulations!";
}

You can unit test this by injecting your own evaluator:

Feature.InjectEvaluator(featureName => true);
if (Feature.IsEnabled("My Feature")) // always true
{
  ViewBag.Message = "Congratulations!";
}
FeatureBee TrayIcon

The TrayIcon is displayed on the page, and can be used to turn features off and on for the current user.

Feature Bee Tray

How to contribute
  1. Check the issues for stuff that needs to be done.
  2. Fork the repository
  3. Make your changes (in itīs own branch)
  4. Send PullRequest

See the wiki for more information


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.