是什么 ? | : | fast, flexible, and lean implementation of core jQuery designed specifically for the server. |
开发语言 | : | JavaScript |
官方主页 | : | https://cheerio.js.org |
源码仓库 | : | https://github.com/cheeriojs/cheerio |
包管理器 | 安装命令 |
---|---|
npm | npm install cheerio --save |
yarn | yarn add cheerio |
导入模块:
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>