[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]lib/2023-06-01 15:53 -  
[DIR]tests/2023-06-01 15:53 -  
[   ]LICENSE2023-06-01 15:53 1.1K 
[TXT]README.md2023-06-01 15:53 421 9b1f1b9 rm old utils [كارل مبارك]
[   ]package.json2023-06-01 15:53 629 2324c9f added npm start script [كارل مبارك]
# 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");
```