Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Node.js OS Complete Reference

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Node.js OS module provides information about the computer operating system.

Below example illustrate the os.version() method in Node.js:

Example:

Javascript




// Import the os module
const os = require("os");
 
let osVersion = os.version();
console.log("OS Version:", osVersion);

Output:

OS Version: Windows 10 Enterprise

The Complete list of OS are listed below:

NodeJS OS

Node.js OS 

Description

Node.js os.EOLThis is used to get end-of-line characters or markers as specified by the operating system.
Node.js os.arch() MethodThis is used to get the CPU architecture of the computer for which the current node.js is compiled.
Node.js os.cpus() MethodThis is used to get information about each logical CPU core of the computer.
Node.js os.endianness() MethodThis is used to get endianness of the CPU of the computer for which the node.js is compiled.
Node.js os.freemem() MethodThis is used to get the amount of free system memory.
Node.js os.getPriority() MethodThis is used to get the scheduling priority of the process specified by pid.
Node.js os.homedir() MethodThis is used to get path of the home directory for the current user.
Node.js os.hostname() MethodThis is used to get hostname of the operating system.
Node.js os.loadavg() MethodThis is used to get the load average.
Node.js os.networkInterfaces() Method This is used to get information about the network interfaces of the computer.
Node.js os.platform() MethodThis is used to get the Operating system platform.
Node.js os.release() MethodThis is used to get the Operating system release.
Node.js os.setPriority() MethodThis is used to set the scheduling priority of the process specified by pid and priority.
Node.js os.tmpdir() MethodThis is used to get path of default directory for temporary files of the operating system.
Node.js os.totalmem() MethodThis is used to get the amount of total system memory in bytes.
Node.js os.type() MethodThis is used to get the Operating system name.
Node.js os.uptime() MethodThis is used to get system uptime in seconds.
Node.js os.userInfo() MethodThis is used to get the information of the currently effective user.
Node.js os.version() MethodThe os. version() method is used to identify the version of the kernel of the Operating System.

NodeJS OS Constants

My Personal Notes arrow_drop_up
Last Updated : 07 Dec, 2022
Like Article
Save Article
Similar Reads
Related Tutorials