Skip to content

Commit

Permalink
update interface, remove none clickable button
Browse files Browse the repository at this point in the history
Former-commit-id: 9d596d0721ecea227f0646eaf96c697c6805fea0 [formerly a20d3a6]
Former-commit-id: 4c13830a501cc8f1258a4b149a9d0a5722c53de7
  • Loading branch information
Tyreal Gray committed Sep 24, 2018
1 parent 7a5ad86 commit 989c2db
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
remoteredux-standalone
================

A standalone monitor, debugging redux even without internet. Based on [`remotedev-server`](https://github.com/zalmoxisus/remotedev-server).
A standalone monitor, debugging redux even without internet. Bridge for communicating with an application remotely via [Redux DevTools extension](https://github.com/zalmoxisus/redux-devtools-extension), [Remote Redux DevTools](https://github.com/zalmoxisus/remote-redux-devtools) or [RemoteDev](https://github.com/zalmoxisus/remotedev).
Based on [remotedev-server](https://github.com/zalmoxisus/remotedev-server).

![remoteredux-standalone](https://raw.githubusercontent.com/TyrealGray/remoteredux-standalone/master/debugger.gif)
### Installation
Expand Down Expand Up @@ -37,13 +38,12 @@ Then run remoteredux from the terminal
```
$ npm run remoteredux
```

Or run in your `server.js` script for starting a development server:
```js
var remoteredux = require('remoteredux-standalone');
remoteredux({ hostname: 'localhost', port: 8000 });
```
This way start remoteredux together with your dev server without electron interface, you will have to use your own browser.
This `server.js` will start remoteredux together with your dev server without electron interface, you will have to use your own browser go into your host address.

### Connection settings

Expand Down
2 changes: 1 addition & 1 deletion public/remotedev-app.min.js.REMOVED.git-id
Original file line number Diff line number Diff line change
@@ -1 +1 @@
91731bb782b650136218d0ba2858eb3ae74d698f
3ba35039a15cf5462179ef25d3fffd4c4bf796e5
6 changes: 6 additions & 0 deletions views/index.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@
#root > div {
height: 100%;
}
#root > div > div:nth-child(1) {
display: none !important;
}
#root > div > div:nth-child(4) > a:nth-child(6) {
display: none !important;
}
</style>
</head>
<body>
Expand Down

0 comments on commit 989c2db

Please sign in to comment.