back/node_modules/pstree.remy
Roberto Castellanos 830220b2f0 first commit 2025-10-19 12:24:23 -06:00
..
lib first commit 2025-10-19 12:24:23 -06:00
tests first commit 2025-10-19 12:24:23 -06:00
.travis.yml first commit 2025-10-19 12:24:23 -06:00
LICENSE first commit 2025-10-19 12:24:23 -06:00
README.md first commit 2025-10-19 12:24:23 -06:00
package.json first commit 2025-10-19 12:24:23 -06:00

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