mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-22 01:26:48 +03:00
Remove references to remotedev.io (#941)
This commit is contained in:
parent
0d38895eb2
commit
a3d70a7e04
|
@ -2,7 +2,7 @@
|
|||
|
||||
![Demo](https://raw.githubusercontent.com/zalmoxisus/remote-redux-devtools/master/demo.gif)
|
||||
|
||||
Web, Electron and Chrome app for monitoring [remote-redux-devtools](https://github.com/zalmoxisus/remote-redux-devtools). Can be accessed on [`remotedev.io`](http://remotedev.io/local).
|
||||
Web, Electron and Chrome app for monitoring [remote-redux-devtools](https://github.com/zalmoxisus/remote-redux-devtools).
|
||||
|
||||
Also it's a react component you can use to build amazing monitor applications like:
|
||||
|
||||
|
|
|
@ -157,7 +157,7 @@ For React Native you can use [remotedev-rn-debugger](https://github.com/jhen0409
|
|||
| `id` | _String_ to identify the instance when sending the history triggered by `sendOn`. You can use, for example, user id here, to know who sent the data. |
|
||||
| `suppressConnectErrors` | _Boolean_ - if set to `false`, all socket errors thrown while trying to connect will be printed to the console, regardless of if they've been thrown before. This is primarily for suppressing `SocketProtocolError` errors, which get repeatedly thrown when trying to make a connection. Default is `true`. |
|
||||
|
||||
All parameters are optional. You have to provide at least `port` property to use `localhost` instead of `remotedev.io` server.
|
||||
All parameters are optional. You have to provide the `port` property to use the `hostname` or `secure` properties.
|
||||
|
||||
Example:
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
export const defaultSocketOptions = {
|
||||
secure: true,
|
||||
hostname: 'remotedev.io',
|
||||
port: 443,
|
||||
secure: false,
|
||||
hostname: 'localhost',
|
||||
port: 8000,
|
||||
autoReconnect: true,
|
||||
autoReconnectOptions: {
|
||||
randomness: 30000,
|
||||
|
|
Loading…
Reference in New Issue
Block a user