On Friday, October 4, 2013 3:47:15 AM UTC+2, Lyndsey wrote: > Now what I really want to offer is the ability to debug the original > typescript file when v8 executes it. This should theoretically be > possible, since typescript can be debugged through some browsers (including > Chrome, which uses v8) using sourcemaps. The problem is that there is no > browser, nor any html page, in this equation. > > I know this is starting to sound like a typescript question, but does > anyone know if there is a v8 option in Visual Studio's "choose your > browser" dropdown when debugging? Any recommendations about how to > accomplish this? > Take a look at Node Inspector[1]. It provides implementation of Chrome DevTools backend[2] using V8 debugger protocol[3]. Most of the code uses V8 features only and should work with vanilla V8, although one or two recent features may be calling Node APIs.
[1] https://github.com/node-inspector/node-inspector [2] https://developers.google.com/chrome-developer-tools/docs/protocol/tot/index [3] https://code.google.com/p/v8/wiki/DebuggerProtocol -- -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
