This feature is well established and works across many devices and browser versions. It’s been available across browsers since April 2018.
* Some parts of this feature may have varying levels of support.
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
Note: This feature is only available in Service Workers.
The ServiceWorkerGlobalScope interface of the Service Worker API represents the global execution context of a service worker.
Developers should keep in mind that the ServiceWorker state is not persisted across the termination/restart cycle, so each event handler should assume it's being invoked with a bare, default global state.
Once successfully registered, a service worker can and will be terminated when idle to conserve memory and processor power. An active service worker is automatically restarted to respond to events, such as fetch or message.
Additionally, synchronous requests are not allowed from within a service worker — only asynchronous requests, like those initiated via the fetch() method, can be used.
This interface inherits from the WorkerGlobalScope interface, and its parent EventTarget.
This interface inherits properties from the WorkerGlobalScope interface, and its parent EventTarget.
ServiceWorkerGlobalScope.clients Read only
Contains the Clients object associated with the service worker.
Returns a reference to the CookieStore object associated with the service worker.
ServiceWorkerGlobalScope.registration Read only
Contains the ServiceWorkerRegistration object that represents the service worker's registration.
ServiceWorkerGlobalScope.serviceWorker Read only
Contains the ServiceWorker object that represents the service worker.
This interface inherits methods from the WorkerGlobalScope interface, and its parent EventTarget.
ServiceWorkerGlobalScope.skipWaiting()Allows the current service worker registration to progress from waiting to active state while service worker clients are using it.
Listen to this event using addEventListener() or by assigning an event listener to the oneventname property of this interface.
activateOccurs when a ServiceWorkerRegistration acquires a new ServiceWorkerRegistration.active worker.
backgroundfetchabort Experimental
Fired when a background fetch operation has been canceled by the user or the app.
backgroundfetchclick Experimental
Fired when the user has clicked on the UI for a background fetch operation.
backgroundfetchfail Experimental
Fired when at least one of the requests in a background fetch operation has failed.
backgroundfetchsuccess Experimental
Fired when all of the requests in a background fetch operation have succeeded.
canmakepayment Experimental
Fired on a payment app's service worker to check whether it is ready to handle a payment. Specifically, it is fired when the merchant website calls the PaymentRequest() constructor.
contentdelete Experimental
Occurs when an item is removed from the ContentIndex.
Fired when a cookie change has occurred that matches the service worker's cookie change subscription list.
fetchOccurs when a fetch() is called.
installOccurs when a ServiceWorkerRegistration acquires a new ServiceWorkerRegistration.installing worker.
messageOccurs when incoming messages are received. Controlled pages can use the MessagePort.postMessage() method to send messages to service workers.
messageerrorOccurs when incoming messages can't be deserialized.
notificationclickOccurs when a user clicks on a displayed notification.
notificationcloseOccurs when a user closes a displayed notification.
paymentrequest Experimental
Fired on a payment app when a payment flow has been initiated on the merchant website via the PaymentRequest.show() method.
syncTriggered when a call to SyncManager.register is made from a service worker client page. The attempt to sync is made either immediately if the network is available or as soon as the network becomes available.
periodicsync Experimental
Occurs at periodic intervals, which were specified when registering a PeriodicSyncManager.
pushOccurs when a server push notification is received.
pushsubscriptionchangeOccurs when a push subscription has been invalidated, or is about to be invalidated (e.g., when a push service sets an expiration time).
This code snippet is from the service worker prefetch sample (see prefetch example live.) The onfetch event handler listens for the fetch event. When fired, the code returns a promise that resolves to the first matching request in the Cache object. If no match is found, the code fetches a response from the network.
The code also handles exceptions thrown from the fetch() operation. Note that an HTTP error response (e.g., 404) will not trigger an exception. It will return a normal response object that has the appropriate error code set.
self.addEventListener("fetch", (event) => {
console.log("Handling fetch event for", event.request.url);
event.respondWith(
caches.match(event.request).then((response) => {
if (response) {
console.log("Found response in cache:", response);
return response;
}
console.log("No response found in cache. About to fetch from network…");
return fetch(event.request).then(
(response) => {
console.log("Response from network is:", response);
return response;
},
(error) => {
console.error("Fetching failed:", error);
throw error;
},
);
}),
);
});
| Specification |
|---|
| Service Workers> # serviceworkerglobalscope-interface> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
ServiceWorkerGlobalScope |
40 | 17 | 44 | 24 | 11.1 | 40 | 44 | 24 | 11.3 | 4.0 | 40 | No |
abortpayment_event |
70 | 79 | No | 57 | No | 70 | No | 49 | No | 10.0 | No | No |
activate_event |
40 | 17 | 44 | 24 | 11.1 | 40 | 44 | 24 | 11.3 | 4.0 | 40 | No |
backgroundfetchabort_event |
74 | 79 | No | 62 | No | 74 | No | 53 | No | 11.0 | No | No |
backgroundfetchclick_event |
74 | 79 | No | 62 | No | 74 | No | 53 | No | 11.0 | No | No |
backgroundfetchfail_event |
74 | 79 | No | 62 | No | 74 | No | 53 | No | 11.0 | No | No |
backgroundfetchsuccess_event |
74 | 79 | No | 62 | No | 74 | No | 53 | No | 11.0 | No | No |
canmakepayment_event |
70 | 79 | No | 57 | No | 70 | No | 49 | No | 10.0 | No | No |
clients |
40 | 17 | 44 | 24 | 11.1 | 40 | 44 | 24 | 11.3 | 4.0 | 40 | No |
contentdelete_event |
No | No | No | No | No | 84 | No | 60 | No | 14.0 | 84 | No |
cookieStore |
87 | 87 | 140 | 73 | 18.4 | 87 | 140 | 62 | 18.4 | 14.0 | 87 | No |
cookiechange_event |
87 | 87 | 140 | 73 | No | 87 | 140 | 62 | No | 14.0 | 87 | No |
fetch_event |
40 | 17 | 44 | 24 | 11.1 | 40 | 44 | 24 | 11.3 | 4.0 | 40 | No |
install_event |
40 | 17 | 44 | 24 | 11.1 | 40 | 44 | 24 | 11.3 | 4.0 | 40 | No |
message_event |
40 | 17 | 44 | 24 | 11.1 | 40 | 44 | 24 | 11.3 | 4.0 | 40 | No |
messageerror_event |
81 | 81 | 65 | 68 | 11.1Although theonmessageerror property is supported, the messageerror event is never fired. See bug 272967. |
81 | 65 | 58 | 11.3Although theonmessageerror property is supported, the messageerror event is never fired. See bug 272967. |
13.0 | 81 | No |
notificationclick_event |
40 | 17 | 44 | 24 | 16Notifications are supported on macOS Ventura and later. |
40 | 44 | 27 | No | 4.0 | 40 | No |
notificationclose_event |
50 | 17 | 44 | 34 | 16Notifications are supported on macOS Ventura and later. |
50 | 44 | 34 | No | 5.0 | 50 | No |
paymentrequest_event |
70 | 79 | No | 57 | No | 70 | No | 49 | No | 10.0 | No | No |
periodicsync_event |
80 | 80 | No | 67 | No | 80 | No | 57 | No | 13.0 | No | No |
push_event |
40 | 17 | 44 | 24 | 16Notifications are supported on macOS Ventura and later. |
40 | 48 | 24 | 16.4Notifications are supported in web apps saved to the home screen. |
4.0 | 40 | NoNotifications are supported in web apps saved to the home screen. |
pushsubscriptionchange_event |
138 | 17–79 | 122 | 16Notifications are supported on macOS Ventura and later. |
138 | 91 | No | No | 138 | No | ||
registration |
42 | 17 | 44 | 26 | 11.1 | 42 | 44 | 26 | 11.3 | 4.0 | 42 | No |
serviceWorker |
79 | 79 | No | 66 | 15.4 | 79 | No | 57 | 15.4 | 12.0 | 79 | No |
skipWaiting |
41 | 17 | 44 | 25 | 11.1 | 41 | 44 | 25 | 11.3 | 4.0 | 41 | No |
sync_event |
49 | 79 | No | 24 | No | 49 | No | 24 | No | 5.0 | No | No |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerGlobalScope