Skip to content

Instantly share code, notes, and snippets.

@booora26
booora26 / app.js
Created October 6, 2021 22:36 — forked from prof3ssorSt3v3/app.js
Code from Service Workers Part 2 - Cache API Intro
const APP = {
SW: null,
cacheName: 'assetCache1',
init() {
//called after DOMContentLoaded
// if ('serviceWorker' in navigator) {
// // Register a service worker hosted at the root of the
// // site using the default scope.
// navigator.serviceWorker.register('/sw.js').then(
// (registration) => {