All Projects → syntax-tree → hast-util-reading-time

syntax-tree / hast-util-reading-time

Licence: MIT license
utility to estimate the reading time

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to hast-util-reading-time

hast-util-to-mdast
utility to transform hast (HTML) to mdast (markdown)
Stars: ✭ 26 (-52.73%)
Mutual labels:  unist, hast, hast-util
hast-util-sanitize
utility to sanitize hast nodes
Stars: ✭ 34 (-38.18%)
Mutual labels:  unist, hast, hast-util
mdast-util-to-hast
utility to transform mdast to hast
Stars: ✭ 53 (-3.64%)
Mutual labels:  unist, hast, hast-util
hast-util-to-html
utility to serialize hast to HTML
Stars: ✭ 47 (-14.55%)
Mutual labels:  unist, hast, hast-util
hast-util-from-dom
utility to transform a DOM tree to hast
Stars: ✭ 20 (-63.64%)
Mutual labels:  unist, hast, hast-util
flesch
Formula to detect the ease of reading a text according to Flesch Reading Ease (1975)
Stars: ✭ 25 (-54.55%)
Mutual labels:  reading, readability
hast-util-select
utility to add `querySelector`, `querySelectorAll`, and `matches` support for hast
Stars: ✭ 20 (-63.64%)
Mutual labels:  hast, hast-util
gunning-fog
Formula to detect the ease of reading a text according to the Gunning fog index (1952)
Stars: ✭ 16 (-70.91%)
Mutual labels:  reading, readability
dale-chall-formula
Formula to find the grade level according to the (revised) Dale–Chall Readability Formula (1995)
Stars: ✭ 26 (-52.73%)
Mutual labels:  reading, readability
automated-readability
Formula to detect ease of reading according to the Automated Readability Index (1967)
Stars: ✭ 46 (-16.36%)
Mutual labels:  reading, readability
reading-list
My reading list
Stars: ✭ 15 (-72.73%)
Mutual labels:  reading
HijriDatePicker
Material (Gregorian - Hijri) Date & Time Picker
Stars: ✭ 128 (+132.73%)
Mutual labels:  time
rescript-date
📆 Date manipulation in ReScript.
Stars: ✭ 101 (+83.64%)
Mutual labels:  time
ad-alexatalkingclock
Alexa (or other Smart Speakers) tell you the time without asking every hour. Please ⭐️if you like my app :)
Stars: ✭ 30 (-45.45%)
Mutual labels:  time
ts-business-time
Business time / market hours logic for TypeScript
Stars: ✭ 18 (-67.27%)
Mutual labels:  time
Shell-Scripts
Shell scripts about some basic topics, current time, calculator, sorting, restaurant and more.
Stars: ✭ 100 (+81.82%)
Mutual labels:  time
timestampy
🕒 Bunch of utilities useful when working with UNIX timestamps
Stars: ✭ 21 (-61.82%)
Mutual labels:  time
ESPNtpClient
High accuracy NTP library for ESP32 and ESP8266
Stars: ✭ 81 (+47.27%)
Mutual labels:  time
time4go
No description or website provided.
Stars: ✭ 26 (-52.73%)
Mutual labels:  time
Language Time
A library that converts Time to its equivalent local languages starting with some basic Nigeria languages(Yoruba, Hausa, Igbo, Efik and English)
Stars: ✭ 51 (-7.27%)
Mutual labels:  time

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.

The algorithm works as follows:

  • estimate the WPM (words per minute) of the audience age based on the facts that English can be read at ±228 WPM (Trauzettel-Klosinski), and that reading rate increases 14 WPM per grade (Carver)
  • apply the readability algorithms Dale—Chall, Automated Readability, Coleman-Liau, Flesch, Gunning-Fog, SMOG, and Spache
  • adjust the WPM of the audience for whether the readability algorithms estimate its above or below their level
  • wordCount / adjustedWpm = readingTime

⚠️ Important: this algorithm is specific to English.

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 12.20+, 14.14+, or 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@1"

In browsers with esm.sh:

<script type="module">
  import {readingTime} from "https://esm.sh/hast-util-reading-time@1?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.

options

Configuration (optional).

options.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.

Returns

Reading time in minutes (number). The result is not rounded so it’s possible to retrieve estimated seconds from it.

Types

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

Compatibility

Projects maintained by the unified collective are compatible with all maintained versions of Node.js. As of now, that is Node.js 12.20+, 14.14+, 16.0+, and 18.0+. Our projects sometimes work with older versions, but this is not guaranteed.

Security

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

Related

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].