A class that extends the CheerioWebBaseLoader class. It represents a loader for loading web pages from the Hacker News website.

Hierarchy

Constructors

Properties

caller: AsyncCaller
timeout: number
webPath: string
selector?: SelectorType
textDecoder?: TextDecoder

Methods

  • An asynchronous method that loads the web page. If the webPath includes "item", it calls the loadComments() method to load the comments from the web page. Otherwise, it calls the loadResults() method to load the results from the web page.

    Returns Promise<Document<Record<string, any>>[]>

    A Promise that resolves to an array of Document instances.

  • Loads the documents and splits them using a specified text splitter.

    Parameters

    Returns Promise<Document<Record<string, any>>[]>

    A Promise that resolves with an array of Document instances, each split according to the provided TextSplitter.

  • Fetches the web document from the webPath and loads it using Cheerio. It returns a CheerioAPI instance.

    Returns Promise<CheerioAPI>

    A Promise that resolves to a CheerioAPI instance.

  • A static method that dynamically imports the Cheerio library and returns the load function. If the import fails, it throws an error.

    Returns Promise<{
        load: ((content, options?, isDocument?) => CheerioAPI);
    }>

    A Promise that resolves to an object containing the load function from the Cheerio library.

Generated using TypeDoc