cheerio

Fast, flexible & lean implementation of core jQuery designed specifically for the server.
Build Status Coverage OpenCollective backers OpenCollective sponsors

[中文文档 (Chinese Readme)](https://github.com/cheeriojs/cheerio/wiki/Chinese-README) ```js const cheerio = require('cheerio'); const $ = cheerio.load('

Hello world

'); $('h2.title').text('Hello there!'); $('h2').addClass('welcome'); $.html(); //=>

Hello there!