You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A macOS and iPadOS app for debugging apps using Fluxor.
FluxorExplorer allows developers of apps using Fluxor, to step through the actions dispatched and the corresponding state changes, to easily debug the data flow of their app.
🗣 Make your app talk
The only thing you need to do, to make your app send out the dispatched actions and state changes, is to register the FluxorExplorerInterceptor in the store:
Note: It is recommended that the FluxorExplorerInterceptor is only registered in debug builds.
🔌 How does it connect?
FluxorExplorer and FluxorExplorerInterceptor uses Apple's MultipeerConnectivity framework to connect and communicate.
When FluxorExplorer is launched, it instantiates a MCNearbyServiceBrowser and starts browsing for peers.
When a FluxorExplorerInterceptor is instantiated a MCNearbyServiceAdvertiser and starts advertising.
When FluxorExplorer discovers an advertising peer it automatically sends an invite to the peer
When the advertising FluxorExplorerInterceptor receives an invite, it automatically accepts it
This means that as long as FluxorExplorer and the app using FluxorExplorerInterceptor is on the same network, they will automatically connect and send/receive data.
About
A macOS and iPadOS app for debugging apps using Fluxor