UNPKG

hooker

Version:

Monkey-patch (hook) functions for debugging and stuff.

17 lines (15 loc) 438 B
var spawn = require('child_process').spawn; function loop() { console.log('starting'); console.log(this); //var child = spawn('./node_modules/nodeunit/bin/nodeunit', ['test']); var child = spawn('node', ['child.js']); child.stdout.on('data', function(buffer) { process.stdout.write(buffer); }); child.on('exit', this.async()); } var context = { async: function() { return loop.bind(context); } }; loop.call(context);