rickandmorty/node_modules/pstree.remy
leca be1ad3a2a3 first commit 2024-07-19 21:12:50 +03:00
..
lib first commit 2024-07-19 21:12:50 +03:00
tests first commit 2024-07-19 21:12:50 +03:00
.travis.yml first commit 2024-07-19 21:12:50 +03:00
LICENSE first commit 2024-07-19 21:12:50 +03:00
README.md first commit 2024-07-19 21:12:50 +03:00
package.json first commit 2024-07-19 21:12:50 +03: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");