Function: fromURL()

Function: fromURL()

function fromURL(url, options?): Promise<CheerioAPI>;

Defined in: index.ts

fromURL loads a document from a URL.

By default, redirects are allowed and non-2xx responses are rejected.

Parameters

ParameterTypeDescription
urlstring | URLThe URL to load the document from.
optionsCheerioRequestOptionsThe options to pass to Cheerio.

Returns

Promise<CheerioAPI>

The loaded document.

Example

import * as cheerio from 'cheerio';

const $ = await cheerio.fromURL('https://example.com');