Skip to content

Instantly share code, notes, and snippets.

View Katheesh's full-sized avatar
❤️
Efficiency consists in a resolute mind

кαтнєєѕкυмαɾ Katheesh

❤️
Efficiency consists in a resolute mind
  • Embedded Systems & Software Engineer at BinSofts Holdings
  • Sri Lanka ⇨ Batticaloa.
  • 22:05 (UTC +05:30)
View GitHub Profile
@Katheesh
Katheesh / app.js
Created October 10, 2022 15:35 — forked from prof3ssorSt3v3/app.js
PWA 6 - Handling Install Events
const APP = {
deferredInstall: null,
init() {
if ('serviceWorker' in navigator) {
//register our service worker
navigator.serviceWorker
.register('/sw.js', {
updateViaCache: 'none',
scope: '/',
})