https://github.com/joostdevries/ember-cli-remote-inspector
Lets you inspect apps running on different devices/browsers over the network using websockets.
https://github.com/joostdevries/ember-cli-remote-inspector
Last synced: about 1 year ago
JSON representation
Lets you inspect apps running on different devices/browsers over the network using websockets.
- Host: GitHub
- URL: https://github.com/joostdevries/ember-cli-remote-inspector
- Owner: joostdevries
- License: mit
- Created: 2014-10-10T13:37:01.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2017-09-22T14:27:23.000Z (over 8 years ago)
- Last Synced: 2025-04-15T16:59:39.581Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 359 KB
- Stars: 92
- Watchers: 2
- Forks: 8
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ember - remote-inspector - Lets you inspect apps running on different devices/browsers over the network using websockets. (Packages / Tools)
README
# ember-cli-remote-inspector
[](https://travis-ci.org/joostdevries/ember-cli-remote-inspector)
Lets you inspect apps running on different devices/browsers over the network using websockets.
## Usage
* `npm install --save-dev ember-cli-remote-inspector`
* Run `ember serve` from your project root.
* Visit `localhost:30820` to open up the inspector
* Visit `localhost:4200` from another browser.
* Magic.

## Options
You can set these options in your `config/environment`, eg. `ENV.remoteDebug = true`;
* `remoteDebug` (bool) Enable/disable remote debugging. Defaults to **true** in development.
* `remoteDebugHost` What host should the inspector run on. This hostname/ip should be accessible over the network. Defaults to **localhost**.
* `remoteDebugPort` What port should the inspector run on. Default: **30820**.
* `remoteDebugScheme` What scheme should be used to load ember-debug and connect to the inspector from your app. Defaults to an empty string which means protocol-relative URLs will be used.
## Credits
Much love goes out to @teddyzeenny and the other people working on the [ember inspector](https://github.com/emberjs/ember-inspector) for making this an easy job. Also credits to @rwjblue and @stefanpenner for ember-cli (addons).
## Changelog
- 0.1.0
- Updated Ember Inspector to 1.8.0
- Added acceptance tests
- Listed Express as a dependency
- 0.0.2 - Support for `remoteDebugScheme` (defaults to "")
- 0.0.1 - Initial release