Kingston_Pendrive/Suli/13.b/Frontend/Javascript/2024. 11. 18/node_modules/pstree.remy
2024-11-19 19:04:02 +01:00
..
lib first commit 2024-11-19 19:04:02 +01:00
tests first commit 2024-11-19 19:04:02 +01:00
.travis.yml first commit 2024-11-19 19:04:02 +01:00
LICENSE first commit 2024-11-19 19:04:02 +01:00
package.json first commit 2024-11-19 19:04:02 +01:00
README.md first commit 2024-11-19 19:04:02 +01: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");