Skip to content

Instantly share code, notes, and snippets.

@geovanisouza92
Created November 21, 2017 11:39
Show Gist options
  • Save geovanisouza92/61c76b7a017f65503a1d075c6644afa6 to your computer and use it in GitHub Desktop.
Save geovanisouza92/61c76b7a017f65503a1d075c6644afa6 to your computer and use it in GitHub Desktop.
Simple Node.js memory stats
const used = process.memoryUsage();
for (let key in used) {
console.log(`${key} ${Math.round(used[key] / 1024 / 1024 * 100) / 100} MB`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment