remote-redux-devtools v0.3.1 Release Notes

Release Date: 2016-05-02 // almost 8 years ago
  • 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.