fetch-cheerio-object
v1.3.0
Published
Fetch a HTML and parse it as a cheerio object
Downloads
163
Maintainers
Readme
fetch-cheerio-object
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'
})();
Installation
npm install fetch-cheerio-object
API
const fetchCheerioObject = require('fetch-cheerio-object');
fetchCheerioObject(url [, options])
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.
License
ISC License © 2017 - 2018 Shinnosuke Watanabe