ServiceWorkerContainer.ready
The ready
read-only property of the ServiceWorkerContainer
interface provides a way of delaying code execution until a service worker is active. It returns a Promise
that will never reject, and which waits indefinitely until the ServiceWorkerRegistration
associated with the current page has an active
worker. Once that condition is met, it resolves with the ServiceWorkerRegistration
.
Syntax
navigator.serviceWorker.ready.then(function(serviceWorkerRegistration) { ... });
Value
A Promise
that will never reject, and which may eventually resolve with a ServiceWorkerRegistration
.
Example
if ('serviceWorker' in navigator) { navigator.serviceWorker.ready .then(function(registration) { console.log('A service worker is active:', registration.active); // At this point, you can call methods that require an active // service worker, like registration.pushManager.subscribe() }); } else { console.log('Service workers are not supported.'); }
Specifications
Specification |
---|
Service Workers 1 # navigator-service-worker-ready |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
ready |
40 |
17 |
44
Extended Support Releases (ESR) before Firefox 78 ESR do not support service workers and the Push API.
|
No |
27 |
11.1 |
40 |
40 |
44 |
27 |
11.3 |
4.0 |
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerContainer/ready