Initial Commit

This commit is contained in:
2018-05-19 02:20:19 +02:00
commit 8621248968
6554 changed files with 1121559 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
// does nothing child process
console.log("Child process.id: " + process.pid);
console.log(" - - - - - - - - - - - - - - - - - - - - - - - ");
setTimeout(function () {
/* Does nothing, but prevents exit */
}, 1000);

View File

@@ -0,0 +1,18 @@
var cp = require('child_process');
var chalk = require('chalk');
var red = chalk.red
var green = chalk.green
var cyan = chalk.cyan;
var count = 0;
while(count < 10) {
var child = cp.exec("node ./test/exec/child.js", function(error, stdout, stderr) {
console.log('stdout: ' + stdout);
console.log(red('stderr: ' + stderr));
if (error !== null) {
console.log(red('exec error: ' + error));
}
})
console.log("child pid: %s | count: %s", child.pid, ++count);
}