Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

npm

gatsby-plugin-readingtime

Get reading time estimates for any content from any source in your Gatsby project’s GraphQL schema.

Install

npm i gatsby-plugin-readingtime

yarn add gatsby-plugin-readingtime

config

gatsby-config.js
{
  plugins: [
    {
      resolve: `gatsby-plugin-readingtime`,
      options: {
        config: {
          // configuration for reading-time package https://github.com/ngryman/reading-time
        },
        types: {
          // Key: GraphQL Type to add reading times to, Value: Resolver function takes source node of Defined GraphQL type and returns content to be processed.
          WpPost: source => {
            const { blocks } = source;
            return blocks.map(block => block.saveContent).join('');
          },
        },
      },
    },
  ]
}
© 2023 Gatsby, Inc.