Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 1.1 KB

README.md

File metadata and controls

38 lines (24 loc) · 1.1 KB

Extensions.Fluxor

Extensions.Fluxor extends the functionality of the Fluxor library.

Motivation

Extensions.Fluxor contains multiple new features that I missed when working with Fluxor. Adding them to Fluxor directly is not really an option because of multiple reasons:

  • they depend on each other
  • they would introduce breaking changes
  • they undermine/replace concepts from Fluxor

Because of that I opted for writing an external library.

Installation

Extensions.Fluxor is split into two NuGet packages:

Usage

To begin using Fluxor.Extensions simply install the NuGet package and register the services like so:

public void SetupFluxor(IServiceCollection services)
{
	services.AddFluxor(o => o.AddExtensions());
}

This will add all services from Fluxor.Extensions to the service collection.

Features

See the documentation