--- title: ServiceWorkerRegistration slug: Web/API/ServiceWorkerRegistration tags: - API - Draft - Interface - NeedsTranslation - Offline - Reference - Service Workers - ServiceWorkerRegistration - TopicStub - Workers translation_of: Web/API/ServiceWorkerRegistration ---
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, {{domxref("EventTarget")}}.
installing
. This is initially set to null
.installed
. This is initially set to null
.activating
or activated
. This is initially set to null
. An active worker will control a {{domxref("ServiceWorkerClient")}} if the client's URL falls within the scope of the registration (the scope
option set when {{domxref("ServiceWorkerContainer.register")}} is first called.)EventListener
property called whenever an event of type updatefound
is fired; it is fired any time the {{domxref("ServiceWorkerRegistration.installing")}} property acquires a new service worker.Also implements methods from its parent interface, {{domxref("EventTarget")}}.
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 |
---|---|---|
{{SpecName('Service Workers', '#service-worker-registration-obj', 'ServiceWorkerRegistration')}} | {{Spec2('Service Workers')}} | Initial definition. |
{{SpecName('Push API', '#widl-ServiceWorkerRegistration-pushManager', 'PushManager')}} | {{Spec2('Push API')}} | Adds the {{domxref("PushManager","pushManager")}} property. |
{{SpecName('Web Notifications')}} | {{Spec2('Web Notifications')}} | Adds the {{domxref("ServiceWorkerRegistration.showNotification()","showNotification()")}} method and the {{domxref("ServiceWorkerRegistration.getNotifications()","getNotifications()")}} method. |
{{SpecName('Background Sync')}} | {{Spec2('Background Sync')}} | Adds the {{domxref("ServiceWorkerRegistration.sync","sync")}} property. |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | {{CompatChrome(40.0)}} | {{ CompatGeckoDesktop("44.0") }}[1] | {{CompatNo}} | {{CompatUnknown}} | {{CompatNo}} |
Available in web workers | {{CompatVersionUnknown}} | {{CompatGeckoDesktop("44.0")}}[1] | {{CompatNo}} | {{CompatUnknown}} | {{CompatNo}} |
getNotifications() , showNotification() |
{{CompatVersionUnknown}} | {{CompatGeckoDesktop("46.0")}}[1] | {{CompatNo}} | {{CompatUnknown}} | {{CompatNo}} |
sync property |
{{CompatChrome(49.0)}} |
Feature | Android | Android Webview | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|---|
Basic support | {{CompatNo}} | {{CompatNo}} | {{ CompatGeckoMobile("44.0") }} | {{ CompatVersionUnknown }} | {{CompatNo}} | {{CompatUnknown}} | {{CompatNo}} | {{CompatChrome(40.0)}} |
Available in web workers | {{CompatNo}} | {{CompatNo}} | {{CompatGeckoMobile("44.0")}} | {{CompatVersionUnknown}} | {{CompatNo}} | {{CompatUnknown}} | {{CompatNo}} | {{CompatVersionUnknown}} |
getNotifications() , showNotification() |
{{CompatNo}} | {{CompatNo}} | {{CompatGeckoMobile("46.0")}} | {{CompatVersionUnknown}} | {{CompatNo}} | {{CompatUnknown}} | {{CompatNo}} | {{CompatVersionUnknown}} |
sync property |
{{CompatNo}} | {{CompatNo}} | {{CompatChrome(49.0)}} |
[1] Service workers (and Push) have been disabled in the Firefox 45 and 52 Extended Support Releases (ESR.)