Stella.FeatureManagement.Dashboard 0.0.48

dotnet add package Stella.FeatureManagement.Dashboard --version 0.0.48
                    
NuGet\Install-Package Stella.FeatureManagement.Dashboard -Version 0.0.48
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Stella.FeatureManagement.Dashboard" Version="0.0.48" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Stella.FeatureManagement.Dashboard" Version="0.0.48" />
                    
Directory.Packages.props
<PackageReference Include="Stella.FeatureManagement.Dashboard" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Stella.FeatureManagement.Dashboard --version 0.0.48
                    
#r "nuget: Stella.FeatureManagement.Dashboard, 0.0.48"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Stella.FeatureManagement.Dashboard@0.0.48
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Stella.FeatureManagement.Dashboard&version=0.0.48
                    
Install as a Cake Addin
#tool nuget:?package=Stella.FeatureManagement.Dashboard&version=0.0.48
                    
Install as a Cake Tool

Stella.FeatureManagement.Dashboard

CI/CD NuGet NuGet Downloads

A ready-to-use web dashboard for managing feature flags in ASP.NET Core applications. Built on top of Microsoft.FeatureManagement with PostgreSQL persistence, it provides a web UI and REST APIs to view, enable, disable, and configure feature flags at runtime.

Dashboard UI

Installation

Install via NuGet Package Manager:

dotnet add package Stella.FeatureManagement.Dashboard

Or via Package Manager Console:

Install-Package Stella.FeatureManagement.Dashboard

Quick Start

Note: This library currently uses PostgreSQL as the database provider for storing feature flags.

1. Register Services

In your Program.cs, add the Feature Management services with the dashboard:

...
using Stella.FeatureManagement.Dashboard;
...
// Add Feature Management with Dashboard
builder.Services.AddFeatureManagement()
    .AddFeaturesDashboard(options => options.UseNpgsql(builder.Configuration.GetConnectionString("exampledb")));

var app = builder.Build();

// Map the dashboard endpoints
var featureDashboard = app.UseFeaturesDashboard();
// Update features database model
await featureDashboard.MigrateFeaturesDatabaseAsync();

// Ensure default features are initialized
await featureDashboard.RegisterManagedFeaturesAsync([
    new ManagedFeature("MyFlag", "My feature flag description", true),
    new ManagedFeature("AnotherFlag", string.Empty, false)
]);
    
app.Run();

2. Access the Dashboard

Once your application is running, access the web dashboard at:

./features/dashboard/

3. REST API

You can also query feature flags programmatically via the REST API:

# Get all features
GET /features

# Response:
# true 
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.0.48 88 2/10/2026
0.0.47 105 1/28/2026
0.0.45 110 1/25/2026
0.0.44 95 1/25/2026
0.0.43 102 1/24/2026
0.0.42 100 1/23/2026
0.0.41 104 1/22/2026
0.0.40 98 1/22/2026
0.0.39 97 1/22/2026
0.0.38 102 1/22/2026
0.0.37 98 1/21/2026
0.0.36 91 1/21/2026
0.0.35 80 1/20/2026
0.0.34 82 1/20/2026
0.0.33 89 1/20/2026
0.0.32 82 1/20/2026
0.0.31 89 1/20/2026
0.0.29 87 1/20/2026
0.0.28 86 1/19/2026
0.0.27 83 1/19/2026
Loading failed