Hi Tim, I am not sure if you are asking for links to documentation or for opinions on what interface the gdb-like debugger should have.
In case you are looking for docs, then here are few links to get you started: - V8 debugger protocol documentation, unfortunately rather incomplete. https://code.google.com/p/v8/wiki/DebuggerProtocol - I usually look into the source code of V8's processDebugRequest to find missing information. https://github.com/joyent/node/blob/c20b209dbb7e2f3ac8a75a8750bc4205d43952c8/deps/v8/src/debug-debugger.js#L1397 - Node implementation of the client for the V8 debugger protocol https://github.com/joyent/node/blob/c20b209dbb7e2f3ac8a75a8750bc4205d43952c8/lib/_debugger.js#L79-L158 - lib/_debugger contains most (all?) of the code of the current CLI debugger, you can learn a lot there - Another good source of information is the implementation in Node Inspector (which I am maintaining): https://github.com/node-inspector/node-inspector/blob/master/lib/DebuggerAgent.js Good luck, Miroslav -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en --- You received this message because you are subscribed to the Google Groups "nodejs" 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/d/optout.
