Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
Nikola Ignjatovic d724149647 Init commit 4 роки тому
..
lib Init commit 4 роки тому
tests Init commit 4 роки тому
.travis.yml Init commit 4 роки тому
LICENSE Init commit 4 роки тому
README.md Init commit 4 роки тому
package.json Init commit 4 роки тому

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");