initial commit

This commit is contained in:
2017-05-20 16:42:43 -04:00
commit e6530a1fa6
2106 changed files with 206258 additions and 0 deletions

18
node_modules/ps-tree/test/exec/parent.js generated vendored Normal file
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);
}