Name | Date | Size | ||
---|---|---|---|---|
.. | 25-Oct-2024 | 4 KiB | ||
.editorconfig | H A D | 25-Oct-2024 | 243 | |
.eslintignore | H A D | 25-Oct-2024 | 108 | |
.eslintrc.json | H A D | 25-Oct-2024 | 1.8 KiB | |
.gitattributes | H A D | 25-Oct-2024 | 146 | |
.gitignore | H A D | 25-Oct-2024 | 142 | |
.gitmodules | H A D | 25-Oct-2024 | 246 | |
.husky/ | H | 25-Oct-2024 | 4 KiB | |
.prettierignore | H A D | 25-Oct-2024 | 87 | |
.prettierrc | H A D | 25-Oct-2024 | 46 | |
bench/ | H | 25-Oct-2024 | 4 KiB | |
BUILD.gn | H A D | 25-Oct-2024 | 2.3 KiB | |
build_parse5.py | H A D | 25-Oct-2024 | 2.8 KiB | |
bundle.json | H A D | 25-Oct-2024 | 820 | |
docs/ | H | 25-Oct-2024 | 4 KiB | |
LICENSE | H A D | 25-Oct-2024 | 1.1 KiB | |
media/ | H | 25-Oct-2024 | 4 KiB | |
package-lock.json | H A D | 25-Oct-2024 | 465 KiB | |
package.json | H A D | 25-Oct-2024 | 2.7 KiB | |
packages/ | H | 25-Oct-2024 | 4 KiB | |
README.en.md | H A D | 25-Oct-2024 | 2 KiB | |
README.md | H A D | 25-Oct-2024 | 2 KiB | |
README.OpenSource | H A D | 25-Oct-2024 | 278 | |
scripts/generate-parser-feedback-test/ | H | 25-Oct-2024 | 4 KiB | |
SECURITY.md | H A D | 25-Oct-2024 | 322 | |
test/ | H | 25-Oct-2024 | 4 KiB | |
tsconfig.json | H A D | 25-Oct-2024 | 881 |
README.en.md
1<p align="center"> 2 <a href="https://github.com/inikulin/parse5"> 3 <img src="https://raw.github.com/inikulin/parse5/master/media/logo.png" alt="parse5" /> 4 </a> 5</p> 6 7<p align="center"> 8<i>HTML parsing/serialization toolset for Node.js. <a href="https://html.spec.whatwg.org/multipage/">WHATWG HTML Living Standard (aka HTML5)</a>-compliant.</i> 9</p> 10 11<p align="center"> 12 <a href="https://github.com/inikulin/parse5/actions/workflows/nodejs-test.yml"><img alt="Build Status" src="https://img.shields.io/github/workflow/status/inikulin/parse5/Node.js%20CI?label=tests&style=flat"></a> 13 <a href="https://www.npmjs.com/package/parse5"><img alt="NPM Version" src="https://img.shields.io/npm/v/parse5.svg"></a> 14 <a href="https://npmjs.org/package/parse5"><img alt="Downloads" src="http://img.shields.io/npm/dm/parse5.svg"></a> 15 <a href="https://npmjs.org/package/parse5"><img alt="Downloads total" src="http://img.shields.io/npm/dt/parse5.svg"></a> 16 <a href="https://coveralls.io/github/inikulin/parse5"><img alt="Coverage" src="https://img.shields.io/coveralls/github/inikulin/parse5/master"></a> 17</p> 18 19<p align="center"> 20<b><i>parse5</i></b> provides nearly everything you may need when dealing with HTML. It's the fastest spec-compliant HTML parser 21for Node to date. It parses HTML the way the latest version of your browser does. It has proven itself reliable in such projects 22as <a href="https://github.com/tmpvar/jsdom">jsdom</a>, <a href="https://angular.io">Angular</a>, 23<a href="https://lit.dev">Lit</a>, <a href="https://github.com/cheeriojs/cheerio">Cheerio</a>, 24<a href="https://github.com/rehypejs/rehype">rehype</a> and many more. 25</p> 26 27--- 28 29<p align="center"> 30 <a href="https://github.com/inikulin/parse5/tree/master/docs/list-of-packages.md">List of parse5 toolset packages</a> 31</p> 32 33<p align="center"> 34 <a href="http://astexplorer.net/#/1CHlCXc4n4">Online playground</a> 35</p> 36 37<p align="center"> 38 <a href="https://github.com/inikulin/parse5/releases">Changelog</a> 39</p> 40</p> 41
README.md
1<p align="center"> 2 <a href="https://github.com/inikulin/parse5"> 3 <img src="https://raw.github.com/inikulin/parse5/master/media/logo.png" alt="parse5" /> 4 </a> 5</p> 6 7<p align="center"> 8<i>HTML parsing/serialization toolset for Node.js. <a href="https://html.spec.whatwg.org/multipage/">WHATWG HTML Living Standard (aka HTML5)</a>-compliant.</i> 9</p> 10 11<p align="center"> 12 <a href="https://github.com/inikulin/parse5/actions/workflows/nodejs-test.yml"><img alt="Build Status" src="https://img.shields.io/github/workflow/status/inikulin/parse5/Node.js%20CI?label=tests&style=flat"></a> 13 <a href="https://www.npmjs.com/package/parse5"><img alt="NPM Version" src="https://img.shields.io/npm/v/parse5.svg"></a> 14 <a href="https://npmjs.org/package/parse5"><img alt="Downloads" src="http://img.shields.io/npm/dm/parse5.svg"></a> 15 <a href="https://npmjs.org/package/parse5"><img alt="Downloads total" src="http://img.shields.io/npm/dt/parse5.svg"></a> 16 <a href="https://coveralls.io/github/inikulin/parse5"><img alt="Coverage" src="https://img.shields.io/coveralls/github/inikulin/parse5/master"></a> 17</p> 18 19<p align="center"> 20<b><i>parse5</i></b> provides nearly everything you may need when dealing with HTML. It's the fastest spec-compliant HTML parser 21for Node to date. It parses HTML the way the latest version of your browser does. It has proven itself reliable in such projects 22as <a href="https://github.com/tmpvar/jsdom">jsdom</a>, <a href="https://angular.io">Angular</a>, 23<a href="https://lit.dev">Lit</a>, <a href="https://github.com/cheeriojs/cheerio">Cheerio</a>, 24<a href="https://github.com/rehypejs/rehype">rehype</a> and many more. 25</p> 26 27--- 28 29<p align="center"> 30 <a href="https://github.com/inikulin/parse5/tree/master/docs/list-of-packages.md">List of parse5 toolset packages</a> 31</p> 32 33<p align="center"> 34 <a href="http://astexplorer.net/#/1CHlCXc4n4">Online playground</a> 35</p> 36 37<p align="center"> 38 <a href="https://github.com/inikulin/parse5/releases">Changelog</a> 39</p> 40</p> 41