WUT_Computer_Science/EGUI/lab3/api/node_modules/pstree.remy
2022-06-15 05:26:01 +02:00
..
lib feat: finish api 2022-06-15 05:26:01 +02:00
tests feat: finish api 2022-06-15 05:26:01 +02:00
.travis.yml feat: finish api 2022-06-15 05:26:01 +02:00
LICENSE feat: finish api 2022-06-15 05:26:01 +02:00
package.json feat: finish api 2022-06-15 05:26:01 +02:00
README.md feat: finish api 2022-06-15 05:26:01 +02: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");