OS Module
Let's experiment with the OS module.
// index.js file
const os = require("os");
console.log(`Total memory ${os.totalmem()}`);
console.log(`Free memory ${os.freemem()}`);
Here is the output when I run the index.js
file on my computer:
Total memory 17179869184
Free memory 544534528