How to move stack frames up / down using Node.js built-in debugger

I know that the node inspector is popular. But I prefer the node built-in debugger for its simplicity and accessibility.

The integrated debugger node.js, as soon as the breakpoint hits, how do I move up / down the stack as frames and the team in ? updowngdb

I noticed that the V8 debugging protocol supports frame selection . But the node.js debugger documentation mentions it does not implement all protocols . So, if this feature is not available in the built-in debugger, what will be the workarounds?

+4
source share
1 answer

, . , repl .

, , out, repl. , , , . "".

, node -, .

0

Source: https://habr.com/ru/post/1616290/


All Articles