Version 1
[yaffs-website] / node_modules / hooker / parent.js
diff --git a/node_modules/hooker/parent.js b/node_modules/hooker/parent.js
new file mode 100644 (file)
index 0000000..c4a055e
--- /dev/null
@@ -0,0 +1,17 @@
+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);
\ No newline at end of file