AboutSupportDeveloper GuideVersion 38.126.82.69

The keys represent the output from calling individual Node os APIs. For example, userInfo will have the output of calling os.userInfo(). For more information see Node os API docs

interface OSInfo {
    hostname: string;
    networkInterfaces: Record<string, undefined | NodeNetworkInterfaceInfo[]>;
    platform: string;
    release: string;
    userInfo: NodeUserInfo;
    version: string;
}

Properties

hostname: string
networkInterfaces: Record<string, undefined | NodeNetworkInterfaceInfo[]>
platform: string
release: string
userInfo: NodeUserInfo

Throws if a user has no username or homedir. See Node os.userInfo docs for more info

version: string