@oazmi/kitchensink - v0.10.1
    Preparing search index...

    Interface SystemInfo

    get information about the current system.

    interface SystemInfo {
        platform: SystemInfoPlatforms;
        arch: SystemInfoArch;
        userAgent: string;
    }
    Index

    Properties

    the system's operating system.

    the system's architecture (i.e. amd64, x86, arm, etc...).

    userAgent: string

    the globalThis.navigator.userAgent string.

    for js-runtimes, it usually looks like: ${runtime_name}/${runtime_version}. below are some examples:

    • js-runtimes: "Node.js/23", "Deno/2.5.6", "Bun/1.3.3", "txiki.js/24.12.0"
    • chrome: "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36"
    • firefox: "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:143.0) Gecko/20100101 Firefox/143.0"