BlazorUpdater 1.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package BlazorUpdater --version 1.1.0
NuGet\Install-Package BlazorUpdater -Version 1.1.0
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="BlazorUpdater" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BlazorUpdater --version 1.1.0
#r "nuget: BlazorUpdater, 1.1.0"
#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.
// Install BlazorUpdater as a Cake Addin
#addin nuget:?package=BlazorUpdater&version=1.1.0

// Install BlazorUpdater as a Cake Tool
#tool nuget:?package=BlazorUpdater&version=1.1.0

Blazor Updater NuGet Package

Framwork support

  • NET 6 or later

Summary

This page makes sure that the users are notified if we deployed a new version of pur site

How it works (brief)

  • PWAs will always fetch and update themselvs but they does not use the updated content and Service Worker (SW)
  • PWA's only use their new SW's when the the user navigates away or the page was closed, if the page refresh does not triggers the new SW to be activated
  • A small scripts listens for the SW state changes and as soon as a new SW is installed and it is in the wait state a small notification bar displayed - that can be customized - in which the user can skip waiting on the new SW and make it the installed current one.
  • NOTE it will make the page reload!

Usage

Relpace the Service Worker registration

  • Relpace the line below in the wwwroot\index.html

<script>navigator.serviceWorker.register('service-worker.js');</script>


<script src="_content/BlazorUpdater/updater.min.js"></script>


<script src="_content/BlazorUpdater/updater.min.js" worker="path/to/service-worker.js"></script>

Use the component in your app

  • A good place would be at the top of your MainLayout.razor component
@inherits LayoutComponentBase

<BlazorUpdater.Updater />

Modify your service worker

  • Add an eventlistener to it
// in service-worker.published.js
self.addEventListener('message', event => {
  if (event.data === 'SKIP_WAITING') self.skipWaiting();
});
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  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. 
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
1.2.1 206 11/25/2023
1.2.0 113 11/8/2023
1.1.0 753 9/18/2022
1.0.0 468 9/14/2022