web api interface
ServiceWorkerRegistration
Secure context Available in workers
The ServiceWorkerRegistration interface of the Service Worker 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.
Instance properties
Also inherits properties from its parent interface, EventTarget.
activeRead onlybackgroundFetchRead only Experimental- : Returns a reference to a
BackgroundFetchManagerobject, which manages background fetch operations.
- : Returns a reference to a
cookiesRead only- : Returns a reference to the
CookieStoreManagerinterface, which allows subscribe and unsubscribe to cookie change events.
- : Returns a reference to the
indexRead only Experimental- : Returns a reference to the
ContentIndexinterface, for managing indexed content for offline viewing.
- : Returns a reference to the
installingRead only- : Returns a service worker whose state is
installing. This is initially set tonull.
- : Returns a service worker whose state is
navigationPreloadRead only- : Returns the instance of
NavigationPreloadManagerassociated with the current service worker registration.
- : Returns the instance of
paymentManagerRead only Experimental- : Returns a payment app’s
PaymentManagerinstance, which is used to manage various payment app functionality.
- : Returns a payment app’s
periodicSyncRead only Experimental- : Returns a reference to the
PeriodicSyncManagerinterface, which allows for registering of tasks to run at specific intervals.
- : Returns a reference to the
pushManagerRead only- : Returns a reference to the
PushManagerinterface for managing push subscriptions including subscribing, getting an active subscription, and accessing push permission status.
- : Returns a reference to the
scopeRead only- : Returns a string representing a URL that defines a service worker’s registration scope; that is, the range of URLs the service worker can control.
syncRead only- : Returns a reference to the
SyncManagerinterface, which manages background synchronization processes.
- : Returns a reference to the
updateViaCacheRead only- : Returns the value of the setting used to determine the circumstances in which the browser will consult the HTTP cache when it tries to update the service worker or any scripts that are imported via
importScripts(). It can be one of the following:imports,all, ornone.
- : Returns the value of the setting used to determine the circumstances in which the browser will consult the HTTP cache when it tries to update the service worker or any scripts that are imported via
waitingRead only- : Returns a service worker whose state is
installed. This is initially set tonull.
- : Returns a service worker whose state is
Instance methods
Also inherits methods from its parent interface, EventTarget.
getNotifications()- : Returns a list of the notifications in the order that they were created from the current origin via the current service worker registration.
showNotification()- : Displays the notification with the requested title.
unregister()- : Unregisters the service worker registration and returns a
Promise. The service worker will finish any ongoing operations before it is unregistered.
- : Unregisters the service worker registration and returns a
update()- : Checks the server for an updated version of the service worker without consulting caches.
Events
updatefound- : Fired any time the
installingproperty acquires a new service worker.
- : Fired any time the
Examples
In this example, the code first checks whether the browser supports service workers and if so registers one. Next, it adds an updatefound listener 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, then the updatefound event will not be fired.
if ("serviceWorker" in navigator) {
navigator.serviceWorker
.register("/sw.js")
.then((registration) => {
registration.addEventListener("updatefound", () => {
// If updatefound is fired, it means that there's
// a new service worker being installed.
const 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((error) => {
console.error(`Service worker registration failed: ${error}`);
});
} else {
console.error("Service workers are not supported.");
}