https://github.com/amorgaut/devtools-plus
Extending V8 remote debugger protocol
https://github.com/amorgaut/devtools-plus
devtools javascript native-javascript nodejs
Last synced: about 1 month ago
JSON representation
Extending V8 remote debugger protocol
- Host: GitHub
- URL: https://github.com/amorgaut/devtools-plus
- Owner: AMorgaut
- License: mit
- Created: 2018-12-19T07:29:16.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-01-05T13:28:17.000Z (over 4 years ago)
- Last Synced: 2025-06-17T11:51:00.402Z (12 months ago)
- Topics: devtools, javascript, native-javascript, nodejs
- Language: JavaScript
- Size: 286 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DevTools Plus
DevTools Protocol Extension module
## Introduction
This module expect to extend the V8 Remote Debugger with features provided by the Chrome v1.2/1.3, or more, Remote Protocol version
## Multi-target
One of the goals is to not be specific to node.js, but to be adaptable to other JavaScript environments (Wakanda? React Native like engines?)
## Network
The main feature to expose is, in first place the `Network` protocol
The Node.js debugger clearly miss the Web Page level Network panel.
Let's start by working on the HTTP client module.
We may then think about exposing the HTTP server, Web Sockets, TCP, UDP and other network communication protocols.
## Elements
Nowadays, even if Web engines are the main JavaScript UI renderers, they are not the only ones. Let's mention QML (Qt) and TvML (Apple TvOS), or Android/iOS platforms via NativeScript or React Native.
It would then make sense to be able to expose those view state via this excellent DevTools `Elements` panel.