node-stat provides monitoring of Linux statistics to applications based on node.js.
npm install -g node-stat
nodestat
nodestat -i 5
var nodestat = require('node-stat');
setInterval(function() {
nodestat.get('stat','net','load','disk', function(err, data) {
console.log(JSON.stringify(data));
});
}, 1000);
MIT