Simple library for Node.js process metrics with Promise-based interface.
$ npm install --save simple-process-metrics
import { getMetrics } from 'simple-process-metrics';
...
const metrics = await getMetrics();
// or
getMetrics().then(metrics => ...);