cheerio
1.1、cheerio简介
是什么 ?:fast, flexible, and lean implementation of core jQuery designed specifically for the server.
开发语言:JavaScript
官方主页:https://cheerio.js.org
源码仓库:https://github.com/cheeriojs/cheerio
1.2、通过包管理器安装cheerio
包管理器安装命令
npmnpm install cheerio --save
yarnyarn add cheerio
1.3、cheerio API

导入模块:

var cheerio = require('cheerio');

使用示例:

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

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

$.html()
//=> <h2 class="title welcome">Hello there!</h2>