Skip to content

Excos - .NET feature management and experimentation framework

License

Notifications You must be signed in to change notification settings

excos-platform/config-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Excos - .NET feature management and experimentation

This library aims to provide experiment configuration framework on top of Microsoft.Extensions.Options.Contextual (source) and guide you through the steps to set up experiments in your application.

I got inspired to start working on this after writing a blog post on experimentation.

excos - groups of people appointed or elected as the decision-making body of an organization

Package Version
Excos.Options NuGet version (Excos.Options)
Excos.Options.GrowthBook NuGet version (Excos.Options.GrowthBook)

Usage

See Usage for more details and unit tests for code samples.

services.ConfigureExcos<MyOptions>("MySection");
services.ConfigureExcosFeatures("Features");

var contextualOptions = provider.GetRequiredService<IContextualOptions<MyOptions, MyContext>>();
var options = await contextualOptions.GetAsync(new MyContext { UserId = "deadbeef" }, default);
// options.MyValue

Roadmap

  1. ✔️Experiment data model implementation and contextual options loader. With options based provider.
  2. ✔️Extension methods for fluent experiment setup (over options provider).
  3. EF Core based provider.
  4. ✔️GrowthBook integration (configuration provider + experiments provider).

Check out the GrowthBook integration guide.

About

Excos - .NET feature management and experimentation framework

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages