-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsw.js
More file actions
29 lines (25 loc) · 777 Bytes
/
sw.js
File metadata and controls
29 lines (25 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
'use strict';
const cacheName = 'your-weather-app';
const filesToCache = [
'index.html',
'style.css'
];
self.addEventListener('install', e => {
console.log('[ServiceWorker] Install');
e.waitUntil(
caches.open(cacheName).then(cache => {
console.log('[ServiceWorker] Caching app shell');
return cache.addAll(filesToCache);
}).catch(err => console.log(err.stack))
);
});
self.addEventListener('activate', event => {
event.waitUntil(self.clients.claim());
});
self.addEventListener('fetch', event => {
event.respondWith(
caches.match(event.request, {ignoreSearch:true}).then(response => {
return response || fetch(event.request);
}).catch(err => console.log(err.stack))
);
});