scraping / library
cheerio
Capability: cheerio
Use it when
- fast HTML parsing in node without a browser
- jquery-like selectors on scraped HTML
What it solves
Install
npm i cheerio
Invoke
import * as cheerio from 'cheerio'; const $ = cheerio.load(html); $('.card').text()Alternatives
No reviewed alternatives recorded yet.