Skip to content

Instantly share code, notes, and snippets.

@zadunn
Created October 25, 2012 19:22
Show Gist options
  • Save zadunn/3954828 to your computer and use it in GitHub Desktop.
Save zadunn/3954828 to your computer and use it in GitHub Desktop.
#!/usr/bin/env node
os = require('os');
var results = {};
results.total_mem = { _type: "L"};
results.free_mem = { _type: "L" };
results.total_mem._value = os.totalmem();
results.free_mem._value = os.freemem();
console.log(JSON.stringify(results));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment