Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 1011 Bytes

File metadata and controls

25 lines (20 loc) · 1011 Bytes

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();
    });
});