Emmanuil c2e0590820 31.07.2020 il y a 4 ans
..
lib c2e0590820 31.07.2020 il y a 4 ans
tests c2e0590820 31.07.2020 il y a 4 ans
.travis.yml c2e0590820 31.07.2020 il y a 4 ans
LICENSE c2e0590820 31.07.2020 il y a 4 ans
README.md c2e0590820 31.07.2020 il y a 4 ans
package.json c2e0590820 31.07.2020 il y a 4 ans

README.md

pstree.remy

Cross platform ps-tree (including unix flavours without ps)

Installation

npm install pstree.remy

Usage

const psTree = psTree require('pstree.remy');

psTree(PID, (err, pids) => {
  if (err) {
    console.error(err);
  }
  console.log(pids)
});

console.log(psTree.hasPS
  ? "This platform has the ps shell command"
  : "This platform does not have the ps shell command");