Slide 22
Slide 22 text
self.addEventListener('push', (e) => {
e.waitUntil(
self.registration.showNotification(
'Service worker notification',
{ body: e.data.text() },
)
)
})
self.addEventListener('notificationclick', (e) => {
e.notification.close()
e.waitUntil(
clients.openWindow('http://localhost:8080/notify/')
)
})
そろそろはじめる Service Worker
22