# 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 `