Skip to main content
interface CpuInfo

The node:os module provides operating system-related utility methods and properties. It can be accessed using:

import os from 'node:os';

Properties

model: string
speed: number
times: { user: number; nice: number; sys: number; idle: number; irq: number; }

See

Back to top