Skip to content

Instantly share code, notes, and snippets.

@audinue
Last active October 31, 2024 08:53
Show Gist options
  • Save audinue/9120951da1ee291bff5d0c25588eeaae to your computer and use it in GitHub Desktop.
Save audinue/9120951da1ee291bff5d0c25588eeaae to your computer and use it in GitHub Desktop.
Minimal service worker
<script>
navigator.serviceWorker.register('/sw.js').then(() => history.go(0))
</script>
addEventListener('fetch', e => e.respondWith(new Response('Hello world!')))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment