25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
rajchatterz 86b3213a9e blah blah 10 ay önce
..
tests blah blah 10 ay önce
.travis.yml blah blah 10 ay önce
LICENSE blah blah 10 ay önce
README.md blah blah 10 ay önce
package.json blah blah 10 ay önce

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