Skip to content

Instantly share code, notes, and snippets.

@KevCui
Created December 3, 2017 15:05
Show Gist options
  • Save KevCui/d4068d3ad0ddb581777af9a3887faed3 to your computer and use it in GitHub Desktop.
Save KevCui/d4068d3ad0ddb581777af9a3887faed3 to your computer and use it in GitHub Desktop.
Post: Ship PWA Guided by Lighthouse
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('./sw.js')
.then(function(registration) {
console.log("Service Worker Registered", registration);
})
.catch(function(err) {
console.log("Service Worker Failed to Register", err);
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment