Skip to content

v0.3.1

Compare
Choose a tag to compare
@zalmoxisus zalmoxisus released this 02 May 11:14
· 142 commits to master since this release

Send data to the remote monitor with post requests (without opening a socket connection)

Check the demo here

The configuration will be like:

export default function configureStore(initialState) {
 return createStore(
    rootReducer,
    initialState,
    devTools({
      name: 'Android app', realtime: false,
      hostname: 'your-host.com', port: 8000,
      sendOn: 'SOME_ACTION_ERROR' // or array: ['LOGIN_ERROR', 'LOGOUT_ERROR']
      })
  );
}

Requires remotedev-server@^0.0.9.

Support secure connections

Added secure parameter, specifies whether to use https protocol for post requests and wss for socket connections. Requires remotedev-server@^0.0.8.