18.10.2016 Views

* Progressive Web Apps

progressive-web-apps-roes-moosmann-gdg-hamburg-10-2016

progressive-web-apps-roes-moosmann-gdg-hamburg-10-2016

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

navigator.serviceWorker.register('/sw.js')<br />

sw.js<br />

Installing<br />

self.addEventListener('fetch', (ev) => {<br />

ev.respondWith(<br />

caches.match(ev.request).then(resp => {<br />

return resp || fetch(ev.request);<br />

})<br />

);<br />

});<br />

Waiting<br />

Activating<br />

Activated

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!