Skip to content

Instantly share code, notes, and snippets.

@centminmod
Forked from ngokevin/serviceworker.js
Created July 21, 2018 05:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save centminmod/179da69c5f34608f67e58ca6b277161e to your computer and use it in GitHub Desktop.
Save centminmod/179da69c5f34608f67e58ca6b277161e to your computer and use it in GitHub Desktop.
Service Worker Template - cache-else-network + network-else-cache
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));
}
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