This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The ServiceWorkerRegistration
interface of the ServiceWorker API represents the service worker registration. You register a service worker to control one or more pages that share the same origin.
The lifetime of a service worker registration is beyond that of the ServiceWorkerRegistration
objects that represent them within the lifetime of their corresponding service worker clients. The browser maintains a persistent list of active ServiceWorkerRegistration
objects.
Note: This feature is available in Web Workers.
Also implements properties from its parent interface, EventTarget
.
ServiceWorkerRegistration.scope
Read only
ServiceWorker
.ServiceWorkerRegistration.installing
Read only
installing
. This is initially set to null
.ServiceWorkerRegistration.waiting
Read only
waiting
. This is initially set to null
.ServiceWorkerRegistration.active
Read only
activating
or activated
. This is initially set to null
. An active worker will control a ServiceWorkerClient
if the client's URL falls within the scope of the registration (the scope
option set when ServiceWorkerContainer.register
is first called.)ServiceWorkerRegistration.navigationPreload
Read only
NavigationPreloadManager
associated with the current service worker registration.serviceWorkerRegistration.periodicSync
Read only
PeriodicSyncManager
interface, which manages periodic background synchronization processes.ServiceWorkerRegistration.pushManager
Read only
PushManager
interface for managing push subscriptions including subscribing, getting an active subscription, and accessing push permission status.ServiceWorkerRegistration.sync
Read only SyncManager
interface, which manages background synchronization processes.ServiceWorkerRegistration.onupdatefound
Read only
EventListener
property called whenever an event of type updatefound
is fired; it is fired any time the ServiceWorkerRegistration.installing
property acquires a new service worker.Also implements methods from its parent interface, EventTarget
.
ServiceWorkerRegistration.getNotifications()
Promise
that resolves to an array of Notification
objects.ServiceWorkerRegistration.showNotification()
ServiceWorkerRegistration.update()
ServiceWorkerRegistration.unregister()
Promise
. The service worker will finish any ongoing operations before it is unregistered.In this example, the code first checks whether the browser supports service workers and if so registers one. Next, it adds and updatefound
event in which it uses the service worker registration to listen for further changes to the service worker's state. If the service worker hasn't changed since the last time it was registered, than the updatefound
event will not be fired.
if ('serviceWorker' in navigator) { navigator.serviceWorker.register('/sw.js') .then(function(registration) { registration.addEventListener('updatefound', function() { // If updatefound is fired, it means that there's // a new service worker being installed. var installingWorker = registration.installing; console.log('A new service worker is being installed:', installingWorker); // You can listen for changes to the installing service worker's // state via installingWorker.onstatechange }); }) .catch(function(error) { console.log('Service worker registration failed:', error); }); } else { console.log('Service workers are not supported.'); }
Specification | Status | Comment |
---|---|---|
Service Workers The definition of 'ServiceWorkerRegistration' in that specification. | Working Draft | Initial definition. |
Push API The definition of 'PushManager' in that specification. | Working Draft | Adds the pushManager property. |
Notifications API | Living Standard | Adds the showNotification() method and the getNotifications() method. |
Web Background Synchronization | Living Standard | Adds the sync property. |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 40 | 17
|
44
|
No | 27 | 11.1 |
active
|
40 | 17
|
44
|
No | 27 | 11.1 |
getNotifications
|
40 | 17
|
46
|
No | 27 | 11.1 |
installing
|
40 | 17
|
44
|
No | 27 | 11.1 |
navigationPreload
|
59 | 17
|
44
|
No | 46 | 11.1 |
onupdatefound
|
No | No | No | No | No | 11.1 |
paymentManager |
56
|
? | ? | ? | ? | ? |
periodicSync
|
40 | ? | No | No | 27 | 11.1 |
pushManager
|
40 | 17
|
44
|
No | 27 | 11.1 |
scope
|
40 | 17
|
44
|
No | 27 | No |
showNotification
|
40 | 17
|
46
|
No | 27 | No |
sync
|
49 | 17
|
44
|
No | 36 | 11.1 |
unregister
|
40 | 17
|
44
|
No | 27 | 11.1 |
update
|
45
|
17
|
44
|
No | 32
|
No |
updateViaCache |
? | 18 | ? | ? | ? | ? |
waiting
|
40 | 17
|
44
|
No | 27 | No |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | 40 | 40 | ? | 44 | 27 | 11.1 | 4.0 |
active
|
40 | 40 | ? | 44 | 27 | 11.1 | 4.0 |
getNotifications
|
40 | 40 | ? | 46 | 27 | 11.1 | 4.0 |
installing
|
40 | 40 | ? | 44 | 27 | 11.1 | 4.0 |
navigationPreload
|
59 | 59 | ? | 44 | 46 | 11.1 | 4.0 |
onupdatefound
|
No | No | No | No | No | 11.1 | No |
paymentManager |
? | 56
|
? | ? | ? | ? | ? |
periodicSync
|
49 | 40 | ? | No | 27 | 11.1 | 4.0 |
pushManager
|
40 | 40 | ? | 44 | 27 | 11.1 | 4.0 |
scope
|
40 | 40 | ? | 44 | 27 | No | 4.0 |
showNotification
|
40 | 40 | ? | 46 | 27 | No | 4.0 |
sync
|
45
|
49 | ? | 44 | 36 | 11.1 | 4.0 |
unregister
|
40 | 40 | ? | 44 | 27 | 11.1 | 4.0 |
update
|
45
|
45
|
? | 44 | 32
|
No | 4.0 |
updateViaCache |
? | ? | ? | ? | ? | ? | ? |
waiting
|
40 | 40 | ? | 44 | 27 | No | 4.0 |
Promise
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration