Get running processes
Works on macOS, Linux, and Windows.
$ npm install ps-list
const psList = require('ps-list');
psList().then(data => {
console.log(data);
//=> [{pid: 3213, name: 'node', cmd: 'node test.js', cpu: '0.1'}, ...]
});
The
cpu
percentage is not supported on Windows.
Returns a Promise<Array>
with the running processes.
Type: Object
Type: boolean
Default: true
Return 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