Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save frontrangerider2004/4128046ed5b24e04af0e24cbcd413321 to your computer and use it in GitHub Desktop.
Save frontrangerider2004/4128046ed5b24e04af0e24cbcd413321 to your computer and use it in GitHub Desktop.
Nodejs memory usage by script
const megabytes = Math.round(process.memoryUsage().heapUsed / 1024 / 1024);
console.log(`The script uses approximately ${megabytes} MB`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment