Skip to content

Instantly share code, notes, and snippets.

@leotm
Created November 19, 2021 15:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leotm/1abc1d995a3707df0e31f528cce1fefd to your computer and use it in GitHub Desktop.
Save leotm/1abc1d995a3707df0e31f528cce1fefd to your computer and use it in GitHub Desktop.
Log service worker registrations to the console
navigator.serviceWorker.getRegistrations().then((registrations) => {
for (const registration of registrations) {
console.log(registration)
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment