unified

Project: syntax-tree/hast-util-reading-time

Package: hast-util-reading-time@1.0.2

  1. Dependents: 0
  2. hast utility to estimate the reading time
  1. util 145
  2. utility 141
  3. unist 132
  4. html 124
  5. hast 74
  6. hast-util 46
  7. summary 4
  8. reading 3
  9. time 2
  10. reading-time 2

hast-util-reading-time

Build Coverage Downloads Size Sponsors Backers Chat

hast utility to estimate the reading time, taking readability of the document into account.

Contents

What is this?

This package is a utility that takes a hast (HTML) syntax tree and estimates the reading time, taking readability of the document and a target age group into account.

When should I use this?

This is a small utility useful when you have an AST, know your audience, and want a really smart reading time algorithm.

The rehype plugin rehype-infer-reading-time-meta wraps this utility to figure, for use with rehype-meta.

Install

This package is ESM only. In Node.js (version 16.0+), install with npm:

npm install hast-util-reading-time

In Deno with esm.sh:

import {readingTime} from 'https://esm.sh/hast-util-reading-time@2'

In browsers with esm.sh:

<script type="module">
  import {readingTime} from 'https://esm.sh/hast-util-reading-time@2?bundle'
</script>

Use

Say our document example.html contains (from “Word per minute: Alphanumeric entry” on Wikipedia:

<p>Since the length or duration of words is clearly variable, for the purpose of measurement of text entry, the definition of each "word" is often standardized to be five characters or keystrokes long in English, including spaces and punctuation. For example, under such a method applied to plain English text the phrase "I run" counts as one word, but "rhinoceros" and "let's talk" would both count as two.</p>
<p>Karat et al. found that one study of average computer users in 1999, the average rate for transcription was 32.5 words per minute, and 19.0 words per minute for composition. In the same study, when the group was divided into "fast", "moderate", and "slow" groups, the average speeds were 40 wpm, 35 wpm, and 23 wpm, respectively.</p>
<p>With the onset of the era of desktop computers, fast typing skills became much more widespread.</p>
<p>An average professional typist types usually in speeds of 43 to 80 wpm, while some positions can require 80 to 95 (usually the minimum required for dispatch positions and other time-sensitive typing jobs), and some advanced typists work at speeds above 120 wpm. Two-finger typists, sometimes also referred to as "hunt and peck" typists, commonly reach sustained speeds of about 37 wpm for memorized text and 27 wpm when copying text, but in bursts may be able to reach much higher speeds. From the 1920s through the 1970s, typing speed (along with shorthand speed) was an important secretarial qualification and typing contests were popular and often publicized by typewriter companies as promotional tools.</p>

…and our module example.js looks as follows:

import fs from 'node:fs/promises'
import {fromHtml} from 'hast-util-from-html'
import {readingTime} from 'hast-util-reading-time'

const tree = fromHtml(await fs.readFile('example.html'), {fragment: true})

console.log(
  `It takes about ${Math.ceil(readingTime(tree, {age: 18}))}-${Math.ceil(readingTime(tree, {age: 14}))}m to read`
)

…now running node example.js yields:

It takes about 2-3m to read

API

This package exports the identifier readingTime. There is no default export.

readingTime(tree[, options])

Estimate the reading time, taking readability of the document and a target age group into account.

For some more background info/history and a few insight on where this all comes from, see How estimated reading times increase content engagement.

Algorithm

The algorithm works as follows:

⚠️ Important: this algorithm is specific to English.

Parameters
Returns

Estimated reading time in minutes (number).

The result is not rounded so it’s possible to retrieve estimated seconds from it.

Options

Configuration (TypeScript type).

Fields
age

Target age group (number, default: 16).

This is the age your target audience was still in school. Set it to 18 if you expect all readers to have finished high school, 21 if you expect your readers to all be college graduates, etc.

Types

This package is fully typed with TypeScript. It exports the additional type Options.

Compatibility

Projects maintained by the unified collective are compatible with maintained versions of Node.js.

When we cut a new major release, we drop support for unmaintained versions of Node. This means we try to keep the current release line, hast-util-reading-time@^2, compatible with Node.js 16.

Security

Use of hast-util-reading-time is safe.

Contribute

See contributing.md in syntax-tree/.github for ways to get started. See support.md for ways to get help.

This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.

License

MIT © Titus Wormer