envjoy - v0.1.0
    Preparing search index...

    Interface EnvDiff

    interface EnvDiff {
        duplicates: { actual: string[]; example: string[] };
        empty: string[];
        extra: string[];
        inSync: boolean;
        missing: string[];
        ok: string[];
    }
    Index
    duplicates: { actual: string[]; example: string[] }

    Keys declared more than once in either file.

    empty: string[]

    Keys present in both but whose value is empty in the actual env file.

    extra: string[]

    Keys present in the actual env file but not declared in the example.

    inSync: boolean

    True when there is no missing/extra/empty drift.

    missing: string[]

    Keys defined in the example but absent from the actual env file.

    ok: string[]

    Keys present and non-empty in both — i.e. correctly configured.