OS Module This module provides information about the operating system and computer specifications. // Importing built-in os module const os = require('os'); console.log(os.type()); // Tells base kernel of OS console.log(os.version()); ...