Dashboard/node_modules/pstree.remy
2024-01-10 10:58:08 -08:00
..
lib chore: add yarn command to put compiled stylesheets into builds folder 2024-01-10 10:58:08 -08:00
tests chore: add yarn command to put compiled stylesheets into builds folder 2024-01-10 10:58:08 -08:00
.travis.yml chore: add yarn command to put compiled stylesheets into builds folder 2024-01-10 10:58:08 -08:00
LICENSE chore: add yarn command to put compiled stylesheets into builds folder 2024-01-10 10:58:08 -08:00
package.json chore: add yarn command to put compiled stylesheets into builds folder 2024-01-10 10:58:08 -08:00
README.md chore: add yarn command to put compiled stylesheets into builds folder 2024-01-10 10:58:08 -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");