1.3.0 • Published 5 years ago

fetch-cheerio-object v1.3.0

Weekly downloads
85
License
ISC
Repository
github
Last release
5 years ago

fetch-cheerio-object

npm version Build Status Coverage Status

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

Use npm.

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