cheerio
jQueryから、ブラウザ固有なところを取り除いて、htmlとかxml操作の部分だけを切り出したやつ なので、既存のhtmlファイルとかの中身をjQueryの記法で手軽に取り出したり、編集して出力したりするのに便利
code:js
import * as cheerio from "npm: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>
// Denoでも動きます
要するに、Node.jsでこういう事ができるというやつ
https://vimeo.com/31950192