Skip to content

A Fluxor middleware to use the Redux Dev Tools from any .NET application (Console, WinUI, MAUI, etc.) on any device with an internet connection.

License

Notifications You must be signed in to change notification settings

berhir/RemoteReduxDevTools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RemoteReduxDevTools

Use the Redux Dev Tools from any .NET application (Console, WinUI, MAUI, etc.) on any device with an internet connection.

This tool is based on the work of Peter Morris in the Fluxor library.

A hosted version of the remote server is available here: https://remotereduxdevtools.azurewebsites.net/.

Usage

Add the RemoteReduxDevTools.Client project to any project that uses Fluxor. Configure the RemoteReduxDevTools middleware:

services.AddFluxor(o =>
{
    o.ScanAssemblies(typeof(App).Assembly);
    o.UseRemoteReduxDevTools(devToolsOptions =>
    {
        devToolsOptions.RemoteReduxDevToolsUri = new Uri("https://remotereduxdevtools.azurewebsites.net/clientapphub");
        devToolsOptions.RemoteReduxDevToolsSessionId = "4098c93f-5b4f-4a78-ab82-fefa2e2d30c3";
        devToolsOptions.Name = "Fluxor Console App";
        //devToolsOptions.EnableStackTrace();
    });
});

About

A Fluxor middleware to use the Redux Dev Tools from any .NET application (Console, WinUI, MAUI, etc.) on any device with an internet connection.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published