https://github.com/ahmadov/v8_inspector_example
V8 Inspector example
https://github.com/ahmadov/v8_inspector_example
chrome-devtools-protocol cpp debugger inspector v8 v8-inspector
Last synced: 13 days ago
JSON representation
V8 Inspector example
- Host: GitHub
- URL: https://github.com/ahmadov/v8_inspector_example
- Owner: ahmadov
- License: mit
- Created: 2019-10-28T16:17:28.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-07-29T11:38:56.000Z (over 4 years ago)
- Last Synced: 2025-10-06T13:04:11.672Z (4 months ago)
- Topics: chrome-devtools-protocol, cpp, debugger, inspector, v8, v8-inspector
- Language: C++
- Homepage:
- Size: 25.6 MB
- Stars: 54
- Watchers: 2
- Forks: 11
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# V8 Inspector example
This repository contains a very simple example how to use a standalone V8 Inspector (without Node.js) with ChromeDevTools.
# Dependencies
* V8 9.2.230.20
* Boost.Beast (for WebSocket communication between ChromeDevTools and V8 Inspector)
# Building
```shell
$ mkdir build && cd build
$ cmake -DV8_INCLUDE_DIR=../deps/include/ -DV8_MONOLITH_LIB_PATH=../deps/libv8_monolith.a ../
$ make
# Execute the binary
$ ./v8_inspector_example
```