Skip to content

Instantly share code, notes, and snippets.

@toanalien
Created August 19, 2017 14:07
Show Gist options
  • Select an option

  • Save toanalien/b77337fde99e3fcac7c92c33282b9bc1 to your computer and use it in GitHub Desktop.

Select an option

Save toanalien/b77337fde99e3fcac7c92c33282b9bc1 to your computer and use it in GitHub Desktop.
build-ins.js
var os = require('os');
var toMb = function(f) {
return(Math.round((f/1024/1024)*100)/100);
}
console.log('Host: ' + os.hostname());
console.log('15 min. load average: ' + os.loadavg()[2]);
console.log(toMb(os.freemem()) + ' of ' + toMb(os.totalmem()) + ' Mb free');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment