Skip to content

Latest commit

 

History

History
33 lines (28 loc) · 1.4 KB

README.md

File metadata and controls

33 lines (28 loc) · 1.4 KB

ReSwiftMonitorBrowser

Usage

  • Implementing ReSwiftMonitor
var middleware: [Middleware<AppState>] = {
    let monitorMiddleware = MonitorMiddleware.make(configuration: Configuration())
    let browserMiddleware = BrowserMiddleware.make()
    #if DEBUG
    return [monitorMiddleware, browserMiddleware]
    #elseif
    return []
    #endif
}()

let store = Store<AppState>(reducer: AppState.reducer(), state: AppState(), middleware: middleware)
  • Launch your Reswift application
  • Launch ReSwiftMonitorBrowser
  • Allow network with each device by alert

Note

CONTRIBUTING

There's still a lot of work to do here. We would love to see you involved. You can find all the details on how to get started in the Contributing Guide.

License

ReSwiftMonitorBrowser is released under the MIT license. See LICENSE for details.