The fast, flexible, and elegant library for parsing and manipulating HTML and XML. import * as cheerio from 'cheerio'; const $ = cheerio.load('<h2 class="title">Hello world</h2>'); $('h2.title').text('Hello there!'); $('h2').addClass('welcome'); $.html(); //=> <html><head></head><body><h2 class="title welcome">Hello there!</h2></body></html> ❤ Proven syntax: Cheerio implements a subset of core jQu
