Skip to content

Instantly share code, notes, and snippets.

@scsskid
Last active December 21, 2020 16:38
Show Gist options
  • Save scsskid/db6745c01d96ee021a804190e6b506b8 to your computer and use it in GitHub Desktop.
Save scsskid/db6745c01d96ee021a804190e6b506b8 to your computer and use it in GitHub Desktop.
[Random Service Worker Examples] #serviceworker
//src: https://github.com/tretapey/svelte-pwa/blob/master/public/service-worker.js
'use strict';
// Update cache names any time any of the cached files change.
const CACHE_NAME = 'static-cache-v1';
// Add list of files to cache here.
const FILES_TO_CACHE = [
'/offline.html',
];
self.addEventListener('install', (evt) => {
console.log('[ServiceWorker] Install');
evt.waitUntil(
caches.open(CACHE_NAME).then((cache) => {
console.log('[ServiceWorker] Pre-caching offline page');
return cache.addAll(FILES_TO_CACHE);
})
);
self.skipWaiting();
});
self.addEventListener('activate', (evt) => {
console.log('[ServiceWorker] Activate');
// Remove previous cached data from disk.
evt.waitUntil(
caches.keys().then((keyList) => {
return Promise.all(keyList.map((key) => {
if (key !== CACHE_NAME) {
console.log('[ServiceWorker] Removing old cache', key);
return caches.delete(key);
}
}));
})
);
self.clients.claim();
});
self.addEventListener('fetch', (evt) => {
console.log('[ServiceWorker] Fetch', evt.request.url);
// Add fetch event handler here.
if (evt.request.mode !== 'navigate') {
// Not a page navigation, bail.
return;
}
evt.respondWith(
fetch(evt.request)
.catch(() => {
return caches.open(CACHE_NAME)
.then((cache) => {
return cache.match('offline.html');
});
})
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment