cheerio
The fast, flexible, and elegant library for parsing and manipulating HTML and XML.
[中文文档 (Chinese Readme)](https://github.com/cheeriojs/cheerio/wiki/Chinese-README)
```js
import * as cheerio from 'cheerio';
const $ = cheerio.load('Hello world
');
$('h2.title').text('Hello there!');
$('h2').addClass('welcome');
$.html();
//=> Hello there!