--
Job board: http://jobs.nodejs.org/
New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md
Old group rules: 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 unsubscribe from this group and stop receiving emails from it, send an email to nodejs+un...@googlegroups.com.
To post to this group, send email to nod...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/nodejs/d0acc822-8385-4572-9480-aa94ef395f41%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
I want to sep through my child_process code like a debugger.
I habve try it with the bild in debugger but how can i concrol the debugger from the parent process ?
var DebuggerClient = require('_debugger').Client;var dc = new DebuggerClient();dc.connect(5858);3) add some breakpoints to your script with "debugger" keyword or programmitically with dc.setBreakpoint()4) drive your it with calls to dc.step(), dc.recContinue() and by reacting on break events:dc.on('break', function(resp) { /* your child stopped */ });