| Name | Last modified | Size | Description | |
|---|---|---|---|---|
| Parent Directory | - | |||
| lib/ | 2025-10-29 15:57 | - | ||
| tests/ | 2025-10-29 15:57 | - | ||
| LICENSE | 2025-10-29 15:57 | 1.1K | ||
| README.md | 2025-10-29 15:57 | 421 | 38d15e7 removed strapi.query from api controllers to repair migration on dev server? [كارل مبارك] | |
| package.json | 2025-10-29 15:57 | 629 |
# 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");
```