How to get the name of the operating system platform in Node.js?
Originally Published Here ๐!
To get the name of the operating system platform, you can use the platform() method from the os module in Node.js.
/* Get OS platform in Node.js */
// import os module
const os = require("os");
// get platform name
con...
melvingeorge-me.hashnode.dev1 min read