Maik 79c46dcb5d modul 3 years ago
..
lib 79c46dcb5d modul 3 years ago
tests 79c46dcb5d modul 3 years ago
.travis.yml 79c46dcb5d modul 3 years ago
LICENSE 79c46dcb5d modul 3 years ago
README.md 79c46dcb5d modul 3 years ago
package.json 79c46dcb5d modul 3 years ago

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");