GithubHelp home page GithubHelp logo

hugodf / reading-time Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 0.0 7 KB

Calculate the amount of time a string would take to read.

License: MIT License

TypeScript 100.00%
typescript microbundle jest jest-snapshots reading-time

reading-time's Introduction

reading-time

Calculate the amount of time a string would take to read.

Installation

npm i --save @hugodf/reading-time

Usage

const { readingTime } = require("reading-time");
// or
import { readingTime } from "reading-time";

const time = readingTime("My text...");
// 1, time to read in minutes

Advanced Usage

Pass a custom wordCount -> readingTime function

const readingTimeFunction = wordCount => {
  return wordCount / 100;
  // default divides by 200 and rounds to nearest integer > 0
};
const time = readingTime("My text...", readingTimeFunction);
// 0.02

Accessing the average reading time function

There is a built-in averageReadingTime function which uses 200 words per minute (average reading time).

This can be used to create a function to format the output without using a custom readingTime function eg. if the formatting in whole minutes is not acceptable

const { readingTime, averageReadingTime } = require("reading-time");
// or
import { readingTime, averageReadingTime } from "reading-time";

const roundedDownAverageReadingTimeFn = wordCount => {
  // Always round down the minutes.
  return Math.floor(averageReadingTime(wordCount));
};
const time = readingTime("My text...", roundedDownAverageReadingTimeFn);
// 0

reading-time's People

Contributors

hugodf avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.