mirror of
https://github.com/Raghu-Ch/nodeRestAPI.git
synced 2026-02-10 20:53:02 -05:00
initial commit
This commit is contained in:
18
node_modules/ps-tree/test/exec/parent.js
generated
vendored
Normal file
18
node_modules/ps-tree/test/exec/parent.js
generated
vendored
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user