Articles tagged: Service worker API
Found 21 documents
- Web/API/Cache The Cache interface provides a storage mechanism for Request / Response object pairs that are ...
- Web/API/Cache/add The add() method of the Cache interface takes a URL, retrieves it, and adds the resulting ...
- Web/API/Cache/addAll The addAll() method of the Cache interface takes an array of URLs, retrieves them, and adds the ...
- Web/API/Cache/match The match() method of the Cache interface returns a Promise that resolves to the Response ...
- Web/API/Cache/put The put() method of the Cache interface allows key/value pairs to be added to the current Cache ...
- Web/API/CacheStorage/keys The keys () method of the CacheStorage interface returns a Promise that will resolve with an ...
- Web/API/CacheStorage/match The match() method of the CacheStorage interface (available globally as caches) checks if a ...
- Web/API/CacheStorage/open The open() method of the CacheStorage interface returns a Promise that resolves to the Cache ...
- Web/API/Client The Client interface represents an executable context such as a Worker, or a SharedWorker. ...
- Web/API/Client/postMessage The postMessage() method of Client allows a service worker to send a message to a client (a ...
- Web/API/Clients The Clients interface provides access to Client objects. Access it via self.clients within a ...
- Web/API/InstallEvent The parameter passed into the oninstall handler, the InstallEvent interface represents an ...
- Web/API/Navigator/serviceWorker The Navigator.serviceWorker read-only property returns the ServiceWorkerContainer object for the ...
- Web/API/ServiceWorkerContainer The ServiceWorkerContainer interface of the ServiceWorker API provides an object representing ...
- Web/API/ServiceWorkerContainer/controller The controller read-only property of the ServiceWorkerContainer interface returns a ...
- Web/API/ServiceWorkerContainer/ready The ready read-only property of the ServiceWorkerContainer interface provides a way of delaying ...
- Web/API/ServiceWorkerContainer/register The register() method of the ServiceWorkerContainer interface creates or updates a ...
- Web/API/ServiceWorkerGlobalScope/skipWaiting The ServiceWorkerGlobalScope.skipWaiting() method of the ServiceWorkerGlobalScope forces the ...
- Web/API/ServiceWorkerRegistration The ServiceWorkerRegistration interface of the ServiceWorker API represents the service worker ...
- Web/API/ServiceWorkerRegistration/getNotifications The getNotifications() method of the ServiceWorkerRegistration interface returns a list of the ...
- Web/Events/message_(ServiceWorker) When the following code is used inside the main thread to set up a message channel between it ...