GrauKatze 05f70669c9 Сконфигурирована и подготовлена база для проекта | před 2 roky | |
---|---|---|
.. | ||
lib | před 2 roky | |
tests | před 2 roky | |
.travis.yml | před 2 roky | |
LICENSE | před 2 roky | |
README.md | před 2 roky | |
package.json | před 2 roky |
Cross platform ps-tree (including unix flavours without ps)
npm install pstree.remy
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");