Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Node.js 操作系统 模块

❮ 内置模块


示例

获取计算机操作系统的信息

var os = require('os');
console.log("平台: " + os.platform());
console.log("架构: " + os.arch());
运行示例 »

定义和用法

OS 模块提供有关计算机操作系统的信息。


语法

在应用程序中包含 OS 模块的语法

var os = require('os');

OS 属性和方法

方法 描述
arch() 返回操作系统的 CPU 架构
constants 返回一个对象,其中包含操作系统用于进程信号、错误代码等的常量。
cpus() 返回一个包含计算机 CPU 信息的数组
endianness() 返回 CPU 的字节序
EOL 返回当前操作系统的换行符
freemem() 返回系统的空闲内存数量
hostname() 返回操作系统的主机名
loadavg() 返回一个包含负载平均值(1、5 和 15 分钟)的数组
networkInterfaces() 返回具有网络地址的网络接口
platform() 返回有关操作系统平台的信息
release() 返回有关操作系统版本的信息
tmpdir() 返回操作系统的默认临时文件目录
totalmem() 返回系统的总内存数量
type() 返回操作系统的名称
uptime() 返回操作系统的运行时间(以秒为单位)
userInfo() 返回有关当前用户信息

❮ 内置模块

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.