Polymer / pwa-starter-kit

Starter templates for building full-featured Progressive Web Apps from web components.
https://pwa-starter-kit.polymer-project.org
2.37k stars 431 forks source link

How the users are notified when new version is available ? #273

Closed RoXuS closed 5 years ago

RoXuS commented 5 years ago

Hi.

Thx for this great starter kit !

The service worker are used in this project so how the users are notified when new version is available ?

frankiefu commented 5 years ago

We needed to do something similar in Polymer Library docs site. You can checkout the code here: https://github.com/Polymer/polymer-library-docs/blob/master/app/js/app.js#L89

If you want to learn more about service worker lifecycle: https://developers.google.com/web/fundamentals/primers/service-workers/lifecycle

RoXuS commented 5 years ago

Great! Thx for your response!