vite-plugin-electron-run
    Preparing search index...

    Interface PidInfo

    Snapshot persisted to a pid file while an Electron process is running.

    interface PidInfo {
        args: string[];
        cwd: string;
        entry: string;
        identity: string;
        pid: number;
        startedAt: string;
    }
    Index
    args: string[]

    Arguments supplied to Electron before the entry file.

    cwd: string

    Working directory from which Electron was launched.

    entry

    entry: string

    Absolute path to the Electron application entry file.

    identity: string

    OS-derived identity used to distinguish a live child from a reused pid.

    pid: number

    Operating-system process identifier.

    startedAt: string

    ISO timestamp recorded when the process was launched.