Discussion

Process DOM String – Cheerio

const cheerio = require('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>
Fast, flexible & lean implementation of core jQuery designed specifically for the server.
 npm install cheerio 

You may also like...

Leave a Reply

Your email address will not be published. Required fields are marked *