Как мы можем помочь?
< Все темы
Печать

Парсинг html/xml (cheerio.js)

npm install cheerio

const cheerio = require('cheerio');
const $ = cheerio.load('<h2 class="title">Hello world</h2>');

$('h2.title').text('Hello there!');
$('h2').addClass('welcome');

$.html();

Оглавление