node-webserver
    Preparing search index...

    Interface Options

    interface Options {
        body?: BodyInit | null;
        ms: number;
        onTimeout?: () => void;
        status?: number;
    }
    Index

    Properties

    body?: BodyInit | null

    Response body to return on timeout

    "Gateway Timeout"
    
    ms: number

    Deadline in milliseconds

    onTimeout?: () => void

    Optional callback invoked when the deadline is exceeded

    status?: number

    Status code to return on timeout

    504