Dashboard/spec/dummy/node_modules/pstree.remy
2024-01-05 21:29:23 -08:00
..
lib chore: install cssbundling rails and set up compilation 2024-01-05 21:29:23 -08:00
tests chore: install cssbundling rails and set up compilation 2024-01-05 21:29:23 -08:00
.travis.yml chore: install cssbundling rails and set up compilation 2024-01-05 21:29:23 -08:00
LICENSE chore: install cssbundling rails and set up compilation 2024-01-05 21:29:23 -08:00
package.json chore: install cssbundling rails and set up compilation 2024-01-05 21:29:23 -08:00
README.md chore: install cssbundling rails and set up compilation 2024-01-05 21:29:23 -08:00

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