Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/onsetsu/dbuggr-chrome-remote-debugging
Testing Chrome's remote debugging protocol and facilities
https://github.com/onsetsu/dbuggr-chrome-remote-debugging
Last synced: 8 days ago
JSON representation
Testing Chrome's remote debugging protocol and facilities
- Host: GitHub
- URL: https://github.com/onsetsu/dbuggr-chrome-remote-debugging
- Owner: onsetsu
- Created: 2016-05-27T13:40:24.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-05-27T14:38:02.000Z (over 8 years ago)
- Last Synced: 2024-11-14T20:48:29.013Z (2 months ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dbuggr-chrome-remote-debugging
Testing Chrome's remote debugging protocol and facilities---
## setting up a basic example
- `clone` this repo
- navigate to that local repo in console
- install the node-inspector npm package with `npm install node-inspector --save`
- according to [this chromium blog post](http://blog.chromium.org/2011/05/remote-debugging-with-chrome-developer.html) start chrome with remote debugging enabled "PATH\TO\YOUR\chrome.exe" --remote-debugging-port=9222 --user-data-dir=remote-profile`
- Navigate this chrome instance to the page you want to debug
- Start another chrome instance regularly and navigate it to http://localhost:9222
- The links there represent all pages, service worker and plugins running on the chrome to debug
- choose the page you want to debugProbably should continue by starting to look into [Blink DevTools](http://www.chromium.org/blink).