Docker-ImageManagementOptim.../node_modules/pstree.remy
adelyaou b37df7e84e Image management and optimization 2025-08-11 17:03:28 +07:00
..
lib Image management and optimization 2025-08-11 17:03:28 +07:00
tests Image management and optimization 2025-08-11 17:03:28 +07:00
.travis.yml Image management and optimization 2025-08-11 17:03:28 +07:00
LICENSE Image management and optimization 2025-08-11 17:03:28 +07:00
README.md Image management and optimization 2025-08-11 17:03:28 +07:00
package.json Image management and optimization 2025-08-11 17:03:28 +07: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");