- StrictMode solo en DEBUG mode - ExecutorService con shutdown apropiado - DNSSetter NetworkCallback unregister - DiffUtil en ChannelAdapter y EventAdapter - minifyEnabled=true y shrinkResources=true para release - Validación en constructores (StreamChannel) - Strings externalizadas - ProGuard rules completas - Testing dependencies agregadas - Removed Firebase (uso personal) - JavaDoc documentación agregada - Android SDK configurado localmente Compilado exitosamente: StreamPlayer v9.4.2 debug APK (11MB)
27 lines
421 B
Markdown
27 lines
421 B
Markdown
# 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");
|
|
```
|