A Node.js module to fetch an HTML and parse it as a cheerio object
const fetchCheerioObject = require('fetch-cheerio-object');
(async () => {
const $ = await fetchCheerioObject('https://example.org/');
$('title').text(); //=> 'Example Domain'
})();
npm install fetch-cheerio-object
const fetchCheerioObject = require('fetch-cheerio-object');
url: string
options: Object
(directly passed to cheerio.load()
)
Return: Promise<Object>
The API is quite similar to the node-fetch's. The only difference between them is that fetch-cheerio-object parses fetched contents as a cheerio object and returns a Promise
for it.
ISC License © 2017 - 2018 Shinnosuke Watanabe