Skip to content

Instantly share code, notes, and snippets.

@NotBobTheBuilder
Created September 7, 2013 13:50
Show Gist options
  • Save NotBobTheBuilder/6475717 to your computer and use it in GitHub Desktop.
Save NotBobTheBuilder/6475717 to your computer and use it in GitHub Desktop.
/*
* /tmp/child.js
*/
var run = function () {
console.log('awh yeah');
return 3;
};
/*
* /tmp/fork.js
*/
var child = require('child_process');
var f = child.fork('/tmp/child');
f.send({
command: 'run'
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment