[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]lib/2023-10-19 15:45 -  
[DIR]tests/2023-10-19 15:45 -  
[   ]LICENSE2023-10-19 15:45 1.1Kf0d2fc9 test post-receive hook [كارل مبارك]
[TXT]README.md2023-10-19 15:45 421 15de0e0 styling, texts [كارل مبارك]
[   ]package.json2023-10-19 15:45 629 120707f added node version q18.16 to dependincies [كارل مبارك]
# pstree.remy

> Cross platform ps-tree (including unix flavours without ps)

## Installation

```shel
npm install pstree.remy
```

## Usage

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