Node.js OS Module Lab
Easy
37
4
41.0% Acceptance
In this lab, you'll work with the Node.js OS module to extract information about the user's operating system and system memory. You'll implement two functions getUserOS
and getFreeSystemMemory
that will return the name of the platform user is running on and the amount of free system memory in bytes, respectively. Make sure you use ESM imports/exports to create these functions.