Last active
March 12, 2023 09:52
-
-
Save ngokevin/7eb03d90987c0ed03b873530c3b4c53c to your computer and use it in GitHub Desktop.
Service Worker Template - cache-else-network + network-else-cache
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var VERSION = 'v1'; | |
var cacheFirstFiles = [ | |
// ADDME: Add paths and URLs to pull from cache first if it has been loaded before. Else fetch from network. | |
// If loading from cache, fetch from network in the background to update the resource. Examples: | |
// 'assets/img/logo.png', | |
// 'assets/models/controller.gltf', | |
]; | |
var networkFirstFiles = [ | |
// ADDME: Add paths and URLs to pull from network first. Else fall back to cache if offline. Examples: | |
// 'index.html', | |
// 'build/build.js', | |
// 'css/index.css' | |
]; | |
// Below is the service worker code. | |
var cacheFiles = cacheFirstFiles.concat(networkFirstFiles); | |
self.addEventListener('install', event => { | |
event.waitUntil( | |
caches.open(VERSION).then(cache => { | |
return cache.addAll(cacheFiles); | |
}) | |
); | |
}); | |
self.addEventListener('fetch', event => { | |
if (event.request.method !== 'GET') { return; } | |
if (networkFirstFiles.indexOf(event.request.url) !== -1) { | |
event.respondWith(networkElseCache(event)); | |
} else if (cacheFirstFiles.indexOf(event.request.url) !== -1) { | |
event.respondWith(cacheElseNetwork(event)); | |
} else { | |
event.respondWith(fetch(event.request)); | |
} | |
}); | |
// If cache else network. | |
// For images and assets that are not critical to be fully up-to-date. | |
// developers.google.com/web/fundamentals/instant-and-offline/offline-cookbook/ | |
// #cache-falling-back-to-network | |
function cacheElseNetwork (event) { | |
return caches.match(event.request).then(response => { | |
function fetchAndCache () { | |
return fetch(event.request).then(response => { | |
// Update cache. | |
caches.open(VERSION).then(cache => cache.put(event.request, response.clone())); | |
return response; | |
}); | |
} | |
// If not exist in cache, fetch. | |
if (!response) { return fetchAndCache(); } | |
// If exists in cache, return from cache while updating cache in background. | |
fetchAndCache(); | |
return response; | |
}); | |
} | |
// If network else cache. | |
// For assets we prefer to be up-to-date (i.e., JavaScript file). | |
function networkElseCache (event) { | |
return caches.match(event.request).then(match => { | |
if (!match) { return fetch(event.request); } | |
return fetch(event.request).then(response => { | |
// Update cache. | |
caches.open(VERSION).then(cache => cache.put(event.request, response.clone())); | |
return response; | |
}) || response; | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ah okay - thanks for the reply!