zhibo/archive/extras/live-streaming/node_modules/pstree.remy
2025-12-22 11:14:06 +08:00
..
lib chore: archive live-streaming and client directories to archive/extras 2025-12-22 11:14:06 +08:00
tests chore: archive live-streaming and client directories to archive/extras 2025-12-22 11:14:06 +08:00
.travis.yml chore: archive live-streaming and client directories to archive/extras 2025-12-22 11:14:06 +08:00
LICENSE chore: archive live-streaming and client directories to archive/extras 2025-12-22 11:14:06 +08:00
package.json chore: archive live-streaming and client directories to archive/extras 2025-12-22 11:14:06 +08:00
README.md chore: archive live-streaming and client directories to archive/extras 2025-12-22 11:14:06 +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");