Skip to content

Instantly share code, notes, and snippets.

@arikanmstf
Last active February 28, 2018 10:26
Show Gist options
  • Save arikanmstf/51d85a3de3297077953b3905c837997c to your computer and use it in GitHub Desktop.
Save arikanmstf/51d85a3de3297077953b3905c837997c to your computer and use it in GitHub Desktop.
navigator.serviceWorker.register('/assets/service-worker.js', { scope: '/' })
.then(function() {
return navigator.serviceWorker.ready;
})
.then(function(registration) {
console.log(registration); // service worker is ready and working...
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment