Remove references to remotedev.io (#941)

This commit is contained in:
Nathan Bierema 2021-11-05 10:53:43 -04:00 committed by GitHub
parent 0d38895eb2
commit a3d70a7e04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -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:

View File

@ -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:

View File

@ -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,