This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The ServiceWorkerContainer interface of the ServiceWorker API provides an object representing the service worker as an overall unit in the network ecosystem, including facilities to register, unregister and update service workers, and access the state of service workers and their registrations.
Most importantly, it exposes the ServiceWorkerContainer.register() method used to register service workers, and the ServiceWorkerContainer.controller property used to determine whether or not the current page is actively controlled.
ServiceWorkerContainer.controller Read only
ServiceWorker object if its state is activated (the same object returned by ServiceWorkerRegistration.active). This property returns null during a force-refresh request (Shift + refresh) or if there is no active worker.ServiceWorkerContainer.ready Read only
Promise that will never reject, and which waits indefinitely until the ServiceWorkerRegistration associated with the current page has an ServiceWorkerRegistration.active worker. Once that condition is met, it resolves with the ServiceWorkerRegistration.ServiceWorkerContainer.oncontrollerchangecontrollerchange event occurs — when the document's associated ServiceWorkerRegistration acquires a new active worker.ServiceWorkerContainer.onerrorerror event occurs in the associated service workers.ServiceWorkerContainer.onmessagemessage event occurs — when incoming messages are received to the ServiceWorkerContainer object (e.g. via a MessagePort.postMessage() call.)ServiceWorkerContainer.register() ServiceWorkerRegistration for the given scriptURL.ServiceWorkerContainer.getRegistration()ServiceWorkerRegistration object whose scope matches the provided document URL. If the method can't return a ServiceWorkerRegistration, it returns a Promise. ServiceWorkerContainer.getRegistrations()ServiceWorkerRegistration objects associated with a ServiceWorkerContainer in an array. If the method can't return ServiceWorkerRegistration objects, it returns a Promise. ServiceWorkerContainer.startMessages()Client.postMessage()). Can be used to avoid race conditions created when a service worker tries to post a message to a page before that page has actually finished loading an ServiceWorkerContainer.onmessage handler to process them.The example below first checks to see if the browser supports service workers. If supported, the code registers the service worker and determines if the page is actively controlled by the service worker. If it isn't, it prompts the user to reload the page so the service worker can take control. The code also reports any registration failures.
if ('serviceWorker' in navigator) {
// Register a service worker hosted at the root of the
// site using the default scope.
navigator.serviceWorker.register('/sw.js').then(function(registration) {
console.log('Service worker registration succeeded:', registration);
// At this point, you can optionally do something
// with registration. See https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration
}).catch(function(error) {
console.log('Service worker registration failed:', error);
});
// Independent of the registration, let's also display
// information about whether the current page is controlled
// by an existing service worker, and when that
// controller changes.
// First, do a one-off check if there's currently a
// service worker in control.
if (navigator.serviceWorker.controller) {
console.log('This page is currently controlled by:', navigator.serviceWorker.controller);
}
// Then, register a handler to detect when a new or
// updated service worker takes control.
navigator.serviceWorker.oncontrollerchange = function() {
console.log('This page is now controlled by:', navigator.serviceWorker.controller);
};
} else {
console.log('Service workers are not supported.');
} | Specification | Status | Comment |
|---|---|---|
| Service Workers The definition of 'ServiceWorkerContainer' in that specification. | Working Draft | Initial definition. |
| Desktop | ||||||
|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
| Basic support | 40 | 17
|
44
|
No | 27 | 11.1 |
controller
|
40 | 17
|
44
|
No | 27 | 11.1 |
ready
|
40 | 17
|
44
|
No | 27 | 11.1 |
oncontrollerchange
|
40 | 17
|
44
|
No | 27 | 11.1 |
onerror
|
40 | 17
|
44
|
No | 27 | 11.1 |
onmessage
|
40 | 17
|
44
|
No | 27 | 11.1 |
register
|
40 | 17
|
44
|
No | 27 | 11.1 |
getRegistration
|
40 | 17
|
44
|
No | 27 | 11.1 |
getRegistrations
|
40 | 17
|
44
|
No | 27 | 11.1 |
onmessageerror |
? | ? | ? | ? | ? | ? |
| Basic support | ? | ? | ? | ? | ? | ? |
| 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 |
controller
|
40 | 40 | ? | 44 | 27 | 11.1 | 4.0 |
ready
|
40 | 40 | ? | 44 | 27 | 11.1 | 4.0 |
oncontrollerchange
|
40 | 40 | ? | 44 | 27 | 11.1 | 4.0 |
onerror
|
40 | 40 | ? | 44 | 27 | 11.1 | 4.0 |
onmessage
|
40 | 40 | ? | 44 | 27 | 11.1 | 4.0 |
register
|
40 | 40 | ? | 44 | 27 | 11.1 | 4.0 |
getRegistration
|
40 | 40 | ? | 44 | 27 | 11.1 | 4.0 |
getRegistrations
|
40 | 40 | ? | 44 | 27 | 11.1 | 4.0 |
onmessageerror |
? | ? | ? | ? | ? | ? | ? |
| Basic support | ? | ? | ? | ? | ? | ? | ? |
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/ServiceWorkerContainer