File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ Mostly functional:
12
12
- [ PureScript] ( #purescript )
13
13
- [ Reductive] ( #reductive )
14
14
- [ Aurelia] ( #aurelia )
15
+ - [ Fluxor] ( #fluxor ) (.NET)
15
16
16
17
In progress:
17
18
@@ -300,3 +301,27 @@ export function configure(aurelia: Aurelia) {
300
301
aurelia .start ().then (() => aurelia .setRoot ());
301
302
}
302
303
```
304
+
305
+ ### [ Fluxor] ( https://github.com/mrpmorris/fluxor ) (.NET)
306
+
307
+ #### [ Fluxor.Blazor.Web.ReduxDevTools] ( https://github.com/mrpmorris/Fluxor/tree/master/Source/Lib/Fluxor.Blazor.Web.ReduxDevTools )
308
+ 1 . Add the ` Fluxor.Blazor.Web.ReduxDevTools ` nuget package to your project.
309
+ 2 . (Optional) Make it conditional on ` DEBUG ` mode.
310
+
311
+ ```
312
+ <ItemGroup Condition="$(Configuration)=='Debug'">
313
+ <PackageReference Include="Fluxor.Blazor.Web.ReduxDevTools" Version="...." />
314
+ </ItemGroup>
315
+ ```
316
+
317
+ 3 . Use the ` UseReduxDevTools ` extension on the Fluxor options.
318
+
319
+ ``` c#
320
+ services .AddFluxor (o =>
321
+ {
322
+ o .ScanAssemblies (typeof (SomeType ).Assembly );
323
+ #if DEBUG
324
+ o .UseReduxDevTools ();
325
+ #endif
326
+ });
327
+ ```
You can’t perform that action at this time.
0 commit comments