jcdcdev.Umbraco.ReadingTime 12.0.0-alpha0001

This is a prerelease version of jcdcdev.Umbraco.ReadingTime.
There is a newer version of this package available.
See the version list below for details.
dotnet add package jcdcdev.Umbraco.ReadingTime --version 12.0.0-alpha0001
                    
NuGet\Install-Package jcdcdev.Umbraco.ReadingTime -Version 12.0.0-alpha0001
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="jcdcdev.Umbraco.ReadingTime" Version="12.0.0-alpha0001" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="jcdcdev.Umbraco.ReadingTime" Version="12.0.0-alpha0001" />
                    
Directory.Packages.props
<PackageReference Include="jcdcdev.Umbraco.ReadingTime" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add jcdcdev.Umbraco.ReadingTime --version 12.0.0-alpha0001
                    
#r "nuget: jcdcdev.Umbraco.ReadingTime, 12.0.0-alpha0001"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package jcdcdev.Umbraco.ReadingTime@12.0.0-alpha0001
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=jcdcdev.Umbraco.ReadingTime&version=12.0.0-alpha0001&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=jcdcdev.Umbraco.ReadingTime&version=12.0.0-alpha0001&prerelease
                    
Install as a Cake Tool

jcdcdev.Umbraco.ReadingTime

Umbraco Version GitHub license NuGet Downloads

Custom Data Type for calculating reading time. With full variant support!

The following editors are currently supported:

  • Rich Text
  • Markdown
  • Block Grid
  • Block List
  • Nested Content
  • Textstring
  • Textarea

Quick Start

  1. Install the NuGet package in your Umbraco CMS website project.

     dotnet add package jcdcdev.Umbraco.ReadingTime
    
  2. Add the Reading Time data type to a document type. You can configure:

    • Words per minute (default is 200)
    • Min Unit (default is Minute)
    • Max Unit (default is Minute) A screenshot of the BackOffice showing Reading Time data type
  3. Save and publish content.

  4. Reading Time will display in the backoffice

    A screenshot of the BackOffice showing Reading Time

Using the value in your templates

In your template, you can accessing the Reading Time property value like any other property:

 @Model.ReadingTime.DisplayTime()

A screenshot of page showing Reading Time

Overriding the default display

The DisplayTime method will format the reading time as a string using Humanizer. This supports variants, meaning the reading time will be displayed based on the pluralisation rules of the current culture (e.g. "1 minute", "2 minutes", "0 minuter").

Min and max TimeUnit values are derived from the Data Type settings. The below example shows how you can ensure only seconds are displayed.

 Model.ReadingTime.DisplayTime(minUnit: TimeUnit.Second, maxUnit: TimeUnit.Second)

Configuration

You can change the average words per minute in the data type settings.

When creating a new data type, the default will be 200 words per minute. To change this default, adjust your appsettings.json file:

{
  "ReadingTime": {
    "WordsPerMinute": 200
  }
}

Limitations

Values are derived from published content only.

Draft content is not included in the calculation.

Words per minute applies to all variants.

It is not currently possible to configure words per minute per culture.

Extending

You can extend the data type to support additional editors by implementing the IReadingTimeValueProvider interface.

public class MyCustomReadingTimeValueProvider : IReadingTimeValueProvider
{
    public bool CanConvert(IPropertyType type)
    {
        return type.EditorAlias == "MyCustomEditorAlias";
    }

    public TimeSpan? GetReadingTime(IProperty property, string? culture, string? segment, IEnumerable<string> availableCultures, ReadingTimeConfiguration config)
    {
        var value = property.GetValue(culture, segment, true);
        if (value is string text)
        {
            return text.GetReadingTime(config.WordsPerMinute);
        }

        return null;
     }
 }

Don't forget to register your custom value provider:

public class Composer : IComposer
{
    public void Compose(IUmbracoBuilder builder)
    {
        builder.ReadingTimeValueProviders().Append<MyCustomReadingTimeValueProvider>();
    }
}

Contributing

Contributions to this package are most welcome! Please read the Contributing Guidelines.

Acknowledgments (thanks!)

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
16.0.2-alpha0003 125 8/10/2025
16.0.1 124 7/27/2025
16.0.1-alpha0009 139 7/9/2025
16.0.0 418 6/12/2025
16.0.0-alpha0008 289 6/12/2025
16.0.0-alpha0005 285 6/10/2025
16.0.0-alpha0002 190 5/11/2025
15.0.14 94 7/27/2025
15.0.14-alpha0003 119 7/16/2025
15.0.13 144 7/3/2025
15.0.13-alpha0003 101 6/22/2025
15.0.12 193 6/16/2025
15.0.12-alpha0007 141 6/16/2025
15.0.12-alpha0001 145 6/3/2025
15.0.11 146 6/1/2025
15.0.11-alpha0017 141 6/1/2025
15.0.11-alpha0009 139 6/1/2025
15.0.11-alpha0003 147 5/27/2025
15.0.10 200 5/11/2025
15.0.10-alpha0011 155 5/8/2025
15.0.9 226 4/22/2025
15.0.9-alpha0003 169 4/21/2025
15.0.8 169 4/18/2025
15.0.8-alpha0008 248 4/13/2025
15.0.8-alpha0003 156 4/6/2025
15.0.7 227 3/30/2025
15.0.7-alpha0019 135 3/30/2025
15.0.7-alpha0010 154 3/23/2025
15.0.7-alpha0008 158 3/23/2025
15.0.7-alpha0003 153 3/18/2025
15.0.6 200 3/12/2025
15.0.6-alpha0003 168 3/10/2025
15.0.5 224 3/7/2025
15.0.5-alpha0003 207 3/4/2025
15.0.4 163 3/3/2025
15.0.4-alpha0003 111 2/24/2025
15.0.3 120 2/19/2025
15.0.3-alpha0005 93 2/16/2025
15.0.3-alpha0003 91 2/16/2025
15.0.2 111 2/13/2025
15.0.2-alpha0004 107 2/10/2025
15.0.1 134 2/7/2025
15.0.1-alpha0005 96 2/6/2025
15.0.0 186 11/19/2024
15.0.0-alpha0012 97 11/17/2024
15.0.0-alpha0010 103 11/12/2024
15.0.0-alpha0006 97 10/23/2024
15.0.0-alpha0004 88 10/17/2024
15.0.0-alpha0003 85 10/17/2024
15.0.0-alpha0001 120 10/9/2024
14.0.6 153 6/1/2025
14.0.6-alpha0015 142 5/27/2025
14.0.6-alpha0006 148 5/8/2025
14.0.5 157 4/22/2025
14.0.5-alpha0005 170 4/22/2025
14.0.4 203 10/8/2024
14.0.4-alpha0003 92 10/31/2024
14.0.3 126 9/27/2024
14.0.3-alpha0013 103 9/26/2024
14.0.2 133 9/23/2024
14.0.2-alpha0005 112 9/22/2024
14.0.1 156 7/4/2024
14.0.1-alpha0010 114 7/1/2024
14.0.1-alpha0003 101 6/24/2024
14.0.0 138 6/6/2024
14.0.0-alpha0008 115 6/6/2024
14.0.0-alpha0005 115 6/6/2024
14.0.0-alpha0003 115 6/4/2024
14.0.0-alpha0001 106 5/25/2024
13.0.7 211 8/12/2025
13.0.7-alpha0003 126 8/10/2025
13.0.6 92 7/27/2025
13.0.6-alpha0009 117 7/16/2025
13.0.5 304 6/12/2025
13.0.5-alpha0013 140 6/3/2025
13.0.5-alpha0006 224 5/12/2025
13.0.4 451 4/23/2025
13.0.4-alpha0002 163 4/21/2025
13.0.3 380 3/30/2025
13.0.3-alpha0003 145 3/18/2025
13.0.2 3,009 10/28/2024
13.0.2-alpha0008 94 10/23/2024
13.0.1 1,562 5/25/2024
13.0.0 152 5/25/2024
13.0.0-alpha0001 110 5/25/2024
12.0.2 146 6/16/2025
12.0.1 123 5/25/2024
12.0.0 127 5/25/2024
12.0.0-alpha0001 116 5/25/2024
10.0.5 285 6/12/2025
10.0.5-alpha0015 139 6/2/2025
10.0.5-alpha0007 214 5/12/2025
10.0.4 159 3/30/2025
10.0.4-alpha0003 158 3/30/2025
10.0.3 105 1/29/2025
10.0.2 116 10/28/2024
10.0.2-alpha0030 98 10/23/2024
10.0.2-alpha0018 121 9/29/2024
10.0.2-alpha0008 96 9/29/2024
10.0.1 134 5/25/2024
10.0.0 129 5/25/2024
10.0.0-alpha0001 123 5/25/2024
0.3.1 945 4/5/2024
0.3.0 172 4/2/2024
0.2.0 168 3/31/2024
0.1.1 618 1/8/2024
0.1.0 150 1/8/2024