Venkman JavaScript Debugger

I am trying to figure out if I can debug a standalone .js file that does not interact with the browser. Is there a way to just load it and debug it, or will I be forced to encapsulate it in an html file?

The environment is Windows; browser objects are not required.

+3
source share
1 answer

To debug a stand-alone script, my first thought was to use the Rhino debugger - have you tried this? I also heard about v8 debug , but I have no experience yet.

+2
source

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


All Articles