# readability **Repository Path**: mirrors_chromium_googlesource/readability ## Basic Information - **Project Name**: readability - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-19 - **Last Updated**: 2025-08-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Readability.js A standalone version of the readability library used for [Firefox Reader View](https://support.mozilla.org/kb/firefox-reader-view-clutter-free-web-pages). ## Installation Readability is available on npm: ```bash npm install @mozilla/readability ``` You can then `require()` it, or for web-based projects, load the `Readability.js` script from your webpage. ## Basic usage To parse a document, you must create a new `Readability` object from a DOM document object, and then call the [`parse()`](#parse) method. Here's an example: ```javascript var article = new Readability(document).parse(); ``` If you use Readability in a web browser, you will likely be able to use a `document` reference from elsewhere (e.g. fetched via XMLHttpRequest, in a same-origin `