Repository URL to install this package:
|
Version:
4.5.0-1freshup3 ▾
|
| .. |
| index.js |
| fastlist.exe |
| package.json |
| readme.md |
| index.d.ts |
| license |
Get running processes
Works on macOS, Linux, and Windows.
$ npm install ps-list
const psList = require('ps-list'); (async () => { console.log(await psList()); //=> [{pid: 3213, name: 'node', cmd: 'node test.js', ppid: 1, uid: 501, cpu: 0.1, memory: 1.5}, …] })();
The
cmd,cpu,memory, anduidproperties are not supported on Windows.
Returns a Promise<Array> with the running processes.
Type: Object
Type: boolean
Default: true
Include other users' processes as well as your own.
On Windows this has no effect and will always be the users' own processes.
MIT © Sindre Sorhus