A TUI to debug Javascript programs 🔧
# install deps
$ npm i
# run on dev mode
$ npm run dev examples/debug-me.js
- Chrome Devtools Protocol communication
- Console (basic features & variables inspection)
- Console (errors & advanced highlighting)
- Console (REPL)
- Menu bar & Tabs
- Debugger
- Network
- Performance
- Memory
+------------------------------------------------------------------------------+
| [1] Console | [2] Debugger | [3] Network | [4] Performance | [5] Memory | < Menu bar
|------------------------------------------------------------------------------|
| < â–¸ {foo: 'bar', plop: true} src/script.js | < Main view
| > let obj = {prop: 42}; |
| < undefined |
| > console.log(obj); |
| < â–¸ {prop: 42} |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|------------------------------------------------------------------------------|
| > Object.values(obj).map(value => value \* 2) | < REPL (Console tab only)
|------------------------------------------------------------------------------|
|[ (^v) Move (>) Open (<) Close ] | < Controls
+------------------------------------------------------------------------------+