sapiochat/node_modules/pstree.remy
sweatshirt0 bd766eebdd first commit 2023-02-20 15:58:14 -05:00
..
lib first commit 2023-02-20 15:58:14 -05:00
tests first commit 2023-02-20 15:58:14 -05:00
.travis.yml first commit 2023-02-20 15:58:14 -05:00
LICENSE first commit 2023-02-20 15:58:14 -05:00
README.md first commit 2023-02-20 15:58:14 -05:00
package.json first commit 2023-02-20 15:58:14 -05: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");