Skip to content

fabianmebus/service-worker-playground

Repository files navigation

Service Worker Playground

CAUTION:

  • This implementation is NOT extensively tested in major browsers or with many devices!
  • The JS should be compiled to an older ES version to get a better browser support!

Right now the Service Worker in service-worker.js has just one purpose:

Serve a styled HTML (offline) page on any HTML request if the network connection isn’t working.

Demo

Tips for Service Worker Development

  • There are a lot of possibilities, decide up front what do you want to accomplish with your SW. The Service Worker Cookbook is a good start for that.
  • Know your browser (different manual reload options) and your browser dev tools.
  • Have a basic understanding of HTTP caching, here you have Caching best practices & max-age gotchas by Jake Archibald.
  • Switch off HTTP caching completely, for all (!) resources, with the HTTP header Cache-Control: no-store for instance.
  • Set the Preserve log option for your JS console.
  • Think about the scope, the SW should handel, have a look at Register a service worker.
  • A SW comes with a performance cost (bootup time) at first, see Speed up Service Worker with Navigation Preloads.
  • Be aware of the "waiting phase" for the installation of a new version of your SW, read The Service Worker Lifecycle.
  • Make sure that only the requests you need (as less as possible) are handled by your SW.
  • Once your SW is installed and activated all requests in scope go through the SW.
  • Make sure that only the resources you need (as less as possible) are cached by your SW.
  • SWs have an own cache, it is not the HTTP cache, the application cache, local storage, indexedDB, etc.
  • Do not try to cache non-GET requests.
  • Without an FetchEvent.respondWith() inside of a fetch event, the SW will not actually handel the request.
  • HTML requests and non-HTML requests usually need different treatments.
  • Use cache: 'reload' for the requests of the resources you want to cache to bypass the HTTP cache, like in new Request('/offline.html', {cache: 'reload'}).
  • Do not forget to update your SW as soon as you updated cached resources.
  • Start with a static cache name (e.g. "offline") which is not changed for every new SW installation.
  • Switch on HTTP caching again and test your desired behaviour (again).

Resources

About

Service Worker Playground

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published