Skip to content

cw2018/FeatureBee

 
 

Repository files navigation

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

About

Release features without a release

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 51.1%
  • C# 25.9%
  • CSS 20.3%
  • HTML 1.6%
  • F# 0.6%
  • Gherkin 0.4%
  • Other 0.1%