[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]tests/2025-10-29 15:57 -  
[DIR]lib/2025-10-29 15:57 -  
[   ]package.json2025-10-29 15:57 629  
[TXT]README.md2025-10-29 15:57 421 38d15e7 removed strapi.query from api controllers to repair migration on dev server? [كارل مبارك]
[   ]LICENSE2025-10-29 15:57 1.1K 
# 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");
```