This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the specification changes.
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
installed
. 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.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.This code snippet is from the service worker registration-events sample (live demo). The code checks to see if the browser supports service workers and if there's currently a service worker handling requests on this page for the current navigation.
Any new service workers are registered; if there's an existing service worker, the code overrides its default scope so that the registration applies to the current directory and everything underneath it. The example also reports any registration failures.
if ('serviceWorker' in navigator) { document.querySelector('#availability').innerText = 'are'; document.querySelector('#controlled').innerText = navigator.serviceWorker.controller ? 'is' : 'is not'; navigator.serviceWorker.register('service-worker.js', {scope: './'}).then(function(registration) { document.querySelector('#register').textContent = 'succeeded'; }).catch(function(error) { document.querySelector('#register').textContent = 'failed: ' + error; }); } else { document.querySelector('#availability').innerText = 'are not'; }
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. |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | 40.0 | 44.0 (44.0)[1] | No support | ? | No support |
Available in web workers | (Yes) | 44.0 (44.0)[1] | No support | ? | No support |
getNotifications() , showNotification()
| (Yes) | 46.0 (46.0)[1] | No support | ? | No support |
sync property | 49.0 |
Feature | Android | Android Webview | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|---|
Basic support | No support | No support | 44.0 (44.0) | (Yes) | No support | ? | No support | 40.0 |
Available in web workers | No support | No support | 44.0 (44.0) | (Yes) | No support | ? | No support | (Yes) |
getNotifications() , showNotification()
| No support | No support | 46.0 (46.0) | (Yes) | No support | ? | No support | (Yes) |
sync property | No support | No support | 49.0 |
[1] Service workers (and Push) have been disabled in the Firefox 45 Extended Support Release (ESR.)
Promise
© 2005–2017 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