estimate
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/estimate package

1.0.0 • Public • Published

estimate

Get remaining reading time estimates in real-time

Live Demo

Install

npm install --save estimate
bower install --save estimate

Usage

.text(value)

Estimates the reading time in seconds for a piece of text to be read completely.

estimate.text('........');
// <- 3

.element(elem)

Estimates reading time for a given element. Returns a small API.

estimate.element(document.body);
// <- { ... }

.total

Total duration in seconds to read the full article.

.progress

The progress percentage that's considered to be already read.

.remaining

Duration in seconds that remains to read the rest of the article.

.update()

Call it through requestAnimationFrame to update the estimate. Updates calc.progress and calc.remaining.

var calc = estimate.element(document.body);
 
requestAnimationFrame(function refresh () {
  calc.update();
  time.innerText = calc.remaining;
  requestAnimationFrame(refresh);
});

.initialize()

Re-initialize the calculator whenever the text changes. Updates calc.total.

Caveat: At any given point, half of the height in the viewport is considered read.

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i estimate

Weekly Downloads

8

Version

1.0.0

License

MIT

Last publish

Collaborators

  • bevacqua