Bakhtina Sofya b84cb877be 1st comm | vor 3 Wochen | |
---|---|---|
.. | ||
node_modules | vor 3 Wochen | |
index.js | vor 3 Wochen | |
license | vor 3 Wochen | |
package.json | vor 3 Wochen | |
readme.md | vor 3 Wochen |
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', memory: '1.5'}, ...]
});
The
cpu
andmemory
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