v0.3.1
Send data to the remote monitor with post requests (without opening a socket connection)
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
.