Skip to content

Instantly share code, notes, and snippets.

View Goshishah's full-sized avatar
🏠
Working from home

shujaat ali Goshishah

🏠
Working from home
  • Pakistan
View GitHub Profile
@Goshishah
Goshishah / app.js
Created August 22, 2024 08:43 — forked from prof3ssorSt3v3/app.js
Introduction to Service Workers code from video
const APP = {
SW: null,
init() {
//called after DOMContentLoaded
if ('serviceWorker' in navigator) {
// 1. Register a service worker hosted at the root of the
// site using the default scope.
navigator.serviceWorker
.register('/sw.js', {
scope: '/',
@Goshishah
Goshishah / app.js
Created August 22, 2024 08:43 — forked from prof3ssorSt3v3/app.js
Introduction to Service Workers code from video
const APP = {
SW: null,
init() {
//called after DOMContentLoaded
if ('serviceWorker' in navigator) {
// 1. Register a service worker hosted at the root of the
// site using the default scope.
navigator.serviceWorker
.register('/sw.js', {
scope: '/',