Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cheeriojs/cheerio
The fast, flexible, and elegant library for parsing and manipulating HTML and XML.
https://github.com/cheeriojs/cheerio
cheerio dom hacktoberfest html htmlparser htmlparser2 jquery parser scraper selector
Last synced: 11 days ago
JSON representation
The fast, flexible, and elegant library for parsing and manipulating HTML and XML.
- Host: GitHub
- URL: https://github.com/cheeriojs/cheerio
- Owner: cheeriojs
- License: mit
- Created: 2011-10-09T04:23:20.000Z (about 13 years ago)
- Default Branch: main
- Last Pushed: 2024-05-21T03:17:06.000Z (6 months ago)
- Last Synced: 2024-05-21T21:04:14.255Z (6 months ago)
- Topics: cheerio, dom, hacktoberfest, html, htmlparser, htmlparser2, jquery, parser, scraper, selector
- Language: TypeScript
- Homepage: https://cheerio.js.org
- Size: 14.3 MB
- Stars: 27,868
- Watchers: 362
- Forks: 1,615
- Open Issues: 47
-
Metadata Files:
- Readme: Readme.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-nodejs - cheerio - 运行在服务器端,快速、灵活和精益的 jQuery 核心功能实现。 ![](https://img.shields.io/github/stars/cheeriojs/cheerio.svg?style=social&label=Star) (GIT 仓库 / 服务端 DOM)
- awesome - cheeriojs/cheerio - The fast, flexible, and elegant library for parsing and manipulating HTML and XML. (TypeScript)
- awesome-nodejs-cn - cheerio - 快速, 灵活, 为服务端设计的借鉴了 jQuery 设计的操作工具 (包 / 其他)
- awesome-nodejs - cheerio - Fast, flexible, and lean implementation of core jQuery designed specifically for the server. ![](https://img.shields.io/github/stars/cheeriojs/cheerio.svg?style=social&label=Star) (Repository / Server-side DOM)
- studyLogs - cheerio - 号称nodejs的jquery,jquery不说你也懂 (Uncategorized / Uncategorized)
- awesome-nodejs-cn - cheerio - **star:27989** 快速、灵活、精益地实现了专门为服务器设计的核心jQuery ![star > 2000][Awesome] (包 / 杂项)
- awesome-starred-test - cheeriojs/cheerio - The fast, flexible, and elegant library for parsing and manipulating HTML and XML. (TypeScript)
- awesome-github-repos - cheeriojs/cheerio - The fast, flexible, and elegant library for parsing and manipulating HTML and XML. (TypeScript)
- awesome-starred - cheerio - Fast, flexible, and lean implementation of core jQuery designed specifically for the server. (JavaScript)
- awesome-github-star - cheerio
- awesome-starred - cheeriojs/cheerio - The fast, flexible, and elegant library for parsing and manipulating HTML and XML. (jquery)
- awesome-nodejs - cheerio - Fast, flexible, and lean implementation of core jQuery designed specifically for the server. (Packages / Miscellaneous)
- StarryDivineSky - cheeriojs/cheerio
- awesome - cheeriojs / cheerio
- awesome-nodejs - cheerio - Fast, flexible, and lean implementation of core jQuery designed specifically for the server. - ★ 17850 (Miscellaneous)
- awesome-browser-automation - Cheerio - jQuery implementation in Node.js for DOM emulation. (Tools / Related tools)
- awesome-node - cheerio - Fast, flexible, and lean implementation of core jQuery designed specifically for the server. (Packages / Miscellaneous)
- awesome-f2e-libs - **cheerio** - 用类 jQuery 语法处理 HTML。 (命令行 / redux 扩展)
- awesome-nodejs-cn - cheerio - 快速, 灵活, 学习了jquery设计模式的服务端dom操作工具(爬取网页时使用). (目录 / 其他)
- awesome-fe - **cheerio** - 用类 jQuery 语法处理 HTML。 (命令行 / macros)
- awesome-node-modules - cheerio - Fast, flexible, and lean implementation of core jQuery designed specifically for the server. (Uncategorized / Uncategorized)
- awesome - cheeriojs/cheerio - The fast, flexible, and elegant library for parsing and manipulating HTML and XML. (TypeScript)
- awesome - cheeriojs/cheerio - The fast, flexible, and elegant library for parsing and manipulating HTML and XML. (TypeScript)
README
cheerio
The fast, flexible, and elegant library for parsing and manipulating HTML and XML.
[中文文档 (Chinese Readme)](https://github.com/cheeriojs/cheerio/wiki/Chinese-README)
```js
import * as cheerio from 'cheerio';
const $ = cheerio.load('Hello world
');$('h2.title').text('Hello there!');
$('h2').addClass('welcome');$.html();
//=>Hello there!
```## Installation
`npm install cheerio`
## Features
**❤ Proven syntax:** Cheerio implements a subset of core jQuery. Cheerio
removes all the DOM inconsistencies and browser cruft from the jQuery library,
revealing its truly gorgeous API.**ϟ Blazingly fast:** Cheerio works with a very simple, consistent DOM
model. As a result parsing, manipulating, and rendering are incredibly
efficient.**❁ Incredibly flexible:** Cheerio wraps around
[parse5](https://github.com/inikulin/parse5) for parsing HTML and can optionally
use the forgiving [htmlparser2](https://github.com/fb55/htmlparser2/). Cheerio
can parse nearly any HTML or XML document. Cheerio works in both browser and
server environments.## API
### Loading
First you need to load in the HTML. This step in jQuery is implicit, since
jQuery operates on the one, baked-in DOM. With Cheerio, we need to pass in the
HTML document.```js
// ESM or TypeScript:
import * as cheerio from 'cheerio';// In other environments:
const cheerio = require('cheerio');const $ = cheerio.load('
- ...
$.html();
//=>
- ...
```
### Selectors
Once you've loaded the HTML, you can use jQuery-style selectors to find elements
within the document.
#### \$( selector, [context], [root] )
`selector` searches within the `context` scope which searches within the `root`
scope. `selector` and `context` can be a string expression, DOM Element, array
of DOM elements, or cheerio object. `root`, if provided, is typically the HTML
document string.
This selector method is the starting point for traversing and manipulating the
document. Like in jQuery, it's the primary method for selecting elements in the
document.
```js
$('.apple', '#fruits').text();
//=> Apple
$('ul .pear').attr('class');
//=> pear
$('li[class=orange]').html();
//=> Orange
```
### Rendering
When you're ready to render the document, you can call the `html` method on the
"root" selection:
```js
$.root().html();
//=>
//
//
//
- Apple
- Orange
- Pear
//
//
//
//
//
//
```
If you want to render the
[`outerHTML`](https://developer.mozilla.org/en-US/docs/Web/API/Element/outerHTML)
of a selection, you can use the `outerHTML` prop:
```js
$('.pear').prop('outerHTML');
//=>
```
You may also render the text content of a Cheerio object using the `text`
method:
```js
const $ = cheerio.load('This is content.');
$('body').text();
//=> This is content.
```
### The "DOM Node" object
Cheerio collections are made up of objects that bear some resemblance to
[browser-based DOM nodes](https://developer.mozilla.org/en-US/docs/Web/API/Node).
You can expect them to define the following properties:
- `tagName`
- `parentNode`
- `previousSibling`
- `nextSibling`
- `nodeValue`
- `firstChild`
- `childNodes`
- `lastChild`
## Screencasts
[https://vimeo.com/31950192](https://vimeo.com/31950192)
> This video tutorial is a follow-up to Nettut's "How to Scrape Web Pages with
> Node.js and jQuery", using cheerio instead of JSDOM + jQuery. This video shows
> how easy it is to use cheerio and how much faster cheerio is than JSDOM +
> jQuery.
## Cheerio in the real world
Are you using cheerio in production? Add it to the
[wiki](https://github.com/cheeriojs/cheerio/wiki/Cheerio-in-Production)!
## Sponsors
Does your company use Cheerio in production? Please consider
[sponsoring this project](https://github.com/cheeriojs/cheerio?sponsor=1)! Your
help will allow maintainers to dedicate more time and resources to its
development and support.
**Headlining Sponsors**
**Other Sponsors**
## Backers
[Become a backer](https://github.com/cheeriojs/cheerio?sponsor=1) to show your
support for Cheerio and help us maintain and improve this open source project.
## License
MIT