1.5.0 • Published 3 years ago

reading-time v1.5.0

Weekly downloads
68,081
License
MIT
Repository
github
Last release
3 years ago

reading-time

NPM Build Status

Medium's like reading time estimation.

reading-time helps you estimate how long an article will take to read. It works perfectly with plain text, but also with markdown or html.

Note that it's focused on performance and simplicity, so the number of words it will extract from other formats than plain text can vary a little. But this is an estimation right?

Installation

npm install reading-time --production

Usage

Classic

const readingTime = require('reading-time');

const stats = readingTime(text);
// ->
// stats: {
//   minutes: 1,
//   time: 60000,
//   words: {total: 200}
// }
console.log(`The reading time is: ${stats.minutes} min`);

Stream

const {ReadingTimeStream, readingTimeWithCount} = require('reading-time');

const analyzer = new ReadingTimeStream();
fs.createReadStream('foo')
  .pipe(analyzer)
  .on('data', (count) => {
    console.log(`The reading time is: ${readingTimeWithCount(count).minutes} min`);
  });

API

readingTime(text, options?)

Returns an object with minutes, time (in milliseconds), and words.

type ReadingTimeResults = {
  minutes: number;
  time: number;
  words: WordCountStats;
};
  • text: the text to analyze
  • options (optional)
    • options.wordsPerMinute: (optional) the words per minute an average reader can read (default: 200)
    • options.wordBound: (optional) a function that returns a boolean value depending on if a character is considered as a word bound (default: spaces, new lines and tabs)

countWords(text, options?)

Returns an object representing the word count stats:

type WordCountStats = {
  total: number;
};
  • text: the text to analyze
  • options (optional)
    • options.wordBound: (optional) a function that returns a boolean value depending on if a character is considered as a word bound (default: spaces, new lines and tabs)

readingTimeWithCount(words, options?)

Returns an object with minutes (rounded minute stats) and time (exact time in milliseconds).

  • words: the word count stats
  • options (optional)
    • options.wordsPerMinute: (optional) the words per minute an average reader can read (default: 200)

Note that readingTime(text, options) === readingTimeWithCount(countWords(text, options), options).

Help wanted!

This library has been optimized for alphabetical languages and CJK languages, but may not behave correctly for other languages that don't use spaces for work bounds. If you find the behavior of this library to deviate significantly from your expectation, issues or contributions are welcomed!

Other projects

  • Fauda: configuration made simple.
  • Badge Size: Displays the size of a given file in your repository.
  • Commitizen Emoji: Commitizen adapter formatting commit messages using emojis.
blp-blogvulcan-cra-starterniouz-apivf-pattern-libraryvuepress-plugin-posts@infinitebrahmanuniverse/nolb-readi@everything-registry/sub-chunk-2629hexo-readingtimehexo-theme-wanghugithub-read-time-badgeaveiga-gatsby-theme-portfolio-minimalivory-app-theme-woronahsu-blogletterpadmdx-loadermarkdown-draculamarkdownlayerelinas-portfolio-gatsbyember-reading-timegatsby-plugin-reading-time-2gatsby-portfolio-themegatsby-remark-reading-timegatsby-remark-reading-time-2gatsby-remark-reading-time-v2gatsby-source-hashnodegatsby-plugin-readingtimegatsby-plugin-readingtime-contentfulgatsby-theme-portfolio-minimalgatsby-theme-academicgatsby-theme-blog-with-githubgatsby-wordpress-reading-timepdf-metadatanodewrite-plugin-postsnuxt-content-theme-blog-gsforknuxt-content-theme-4-hamjspnextjsmetalsmith-reading-timemdsvex-reading-timememeblogpaperboardraven-reader@toolmaker/auth-component@antv/dumi-theme-antva-nice-bloggo-theme@zeushq/design-system@zzzkan/gatsby-theme-blogscully-plugin-time-to-readsaturn-app-theme-woronarspress-plugin-reading-time@zapier-labs/design-system@vendohq/design-system@swimscribe/design-system@sudaraka94/gatsby-theme-novela@sorrel340/gatsby-theme-portfolio-minimalreading-time-calculatorreading-plannerremark-reading-timerevelo@0x-jerry/vitepress-theme-blog@64robots/nuxt-content-blogsg-portfolio-minimalambercat@avsync.live/formation@docusaurus/plugin-content-blog@cromwell/core-backend@cutting/markdown@cssninja/stylo@depla/utils-astro-plugin-predict-reading-timechirpy-devcontentlayer-datapadulka-plugin-reading-timecra-template-vulcan@chirpy-dev/main-appauto-front-mattersquidostrapi-plugin-reading-timespigniteastro-markdown-experienceastro-reading-time@builderdao/md-utilscodeblog-template-simplecodeblog@draftbox-co/gatsby-ghost-balsa-theme@draftbox-co/gatsby-ghost-novela-theme@draftbox-co/gatsby-theme-ghost-attila@draftbox-co/gatsby-wordpress-balsa-theme@draftbox-co/gatsby-wordpress-novela-theme@draftbox-co/gatsby-wordpress-theme-libre@bethq/design-systemsite-audit-seo-readabilitysite-audit-seo-yakeskedush-blog-teatailwind-nextjs-typescript-starter-blogdocaryswillie-blogvuepress-plugin-reading-timevuepress-theme-dogvuepress-theme-rakuvalaxy-theme-hairycrossnote
2.0.0-1

3 years ago

2.0.0-0

3 years ago

1.5.0

3 years ago

1.4.0

3 years ago

1.3.0

3 years ago

1.2.1

3 years ago

1.2.0

5 years ago

1.1.3

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

8 years ago

1.0.2

8 years ago

0.1.0

9 years ago

0.0.1

10 years ago