<

What Is A Service Worker | What Does A Service Worker Do?

Service workers are scripts that your browser runs in the background and act as a network proxy in the web browser to manage the web/HTTP requests programmatically. It's fairly easy to add a service worker to your website. "Register" your service worker and set the scope:

navigator.serviceWorker.register('sw.js', {    scope: './'  })

Service Workers lie between the network and device to supplement the content enabling the creation of effective offline experiences using the cache mechanisms. They will also allow access to push notifications and background sync APIs. A service worker looks something like this:

//This is the "Offline page" service worker//Install stage sets up the offline page in the cahche and opens a new cacheself.addEventListener('install', function(event) {  var offlinePage = new Request(‘OfflineHtmlPath’);  event.waitUntil(  fetch(offlinePage).then(function(response) {    return caches.open('pwabuilder-offline').then(function(cache) {      console.log('[PWA Builder] Cached offline page during Install'+ response.url);      return cache.put(offlinePage, response);    });  }));});

Was this article helpful