@openhps/rest
    Preparing search index...

    Interface ServerOptions

    interface ServerOptions {
        express: Express;
        frameFilter?: (frame: DataFrame) => boolean;
        middleware?: RequestHandler<
            ParamsDictionary,
            any,
            any,
            ParsedQs,
            Record<string, any>,
        >[];
        name?: string;
        path: string;
        pullTimeout?: number;
        uid?: string;
    }

    Hierarchy

    • ProcessingNodeOptions
      • ServerOptions
    Index
    express: Express
    frameFilter?: (frame: DataFrame) => boolean

    Frame filter to specify what frames are processed by this node

    middleware?: RequestHandler<
        ParamsDictionary,
        any,
        any,
        ParsedQs,
        Record<string, any>,
    >[]
    name?: string

    User friendly name of the node Used for querying a node by its name.

    path: string
    pullTimeout?: number
    uid?: string

    Manually set the unique identifier of the node