ecr-viewer
    Preparing search index...

    Interface Module

    interface Module {
        children: Module[];
        exports: any;
        filename: string;
        id: string;
        isPreloading: boolean;
        loaded: boolean;
        parent: undefined | null | Module;
        path: string;
        paths: string[];
        require: Require;
    }
    Index

    Properties

    children: Module[]
    exports: any
    filename: string
    id: string
    isPreloading: boolean

    true if the module is running during the Node.js preload

    loaded: boolean
    parent: undefined | null | Module

    since v14.6.0 Please use require.main and module.children instead.

    path: string

    v11.14.0

    The directory name of the module. This is usually the same as the path.dirname() of the module.id.

    paths: string[]
    require: Require