1.0.2 • Published 8 years ago

child_pids v1.0.2

Weekly downloads
302
License
MIT
Repository
github
Last release
8 years ago

child_pids

Retrieve all pids in a process tree up to certain height.

Installation

npm install child_pids

Usage

var childPids = require('child_pids'),
var parentPid = 56
var maxDepth = 0; // all children. if > 0 only children to that height of the process tree are returned

childPids.find(parentPid, maxDepth, function(err, pids) {
    if(!err) {
        console.log('Children pids: ', pids);
    }
});

Test

To run the tests execute npm test