varos=require("os"); // CPU的字节序,可能的是 "BE" 或 "LE"constendianness=os.endianness() // 操作系统的主机名consthostname=os.hostname() // 操作系统名consttype=os.type() // 操作系统名constplatform=os.platform() // 操作系统运行的时间,以秒为单位consttime=os.uptime() // 系统内存总量,单位为字节。consttotalMemory=os.totalmem() // 操作系统空闲内存量,单位是字节。constfreeMemory=os.freemem() console.log({ endianness, hostname, type, platform, time, totalMemory, freeMemory });
执行结果: