Skip to content

Instantly share code, notes, and snippets.

View Md-shefat-masum's full-sized avatar

Md. Shefat Md-shefat-masum

View GitHub Profile
@prof3ssorSt3v3
prof3ssorSt3v3 / app.js
Created March 13, 2021 22:17
Code for Service Workers 9 - Integrating IndexedDB into site with a Service Worker
const APP = {
SW: null,
DB: null, //TODO:
init() {
//called after DOMContentLoaded
//register our service worker
APP.registerSW();
document
.getElementById('colorForm')
.addEventListener('submit', APP.saveColor);