Articles tagged: Service Workers
Found 119 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/delete The delete() method of the Cache interface finds the Cache entry whose key is the request, and ...
- Web/API/Cache/keys The keys() method of the Cache interface returns a Promise that resolves to an array of Cache keys.
- Web/API/Cache/match The match() method of the Cache interface returns a Promise that resolves to the Response ...
- Web/API/Cache/matchAll The matchAll() method of the Cache interface returns a Promise that resolves to an array of all ...
- 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 The CacheStorage interface represents the storage for Cache objects. It provides a master ...
- Web/API/CacheStorage/delete The delete () method of the CacheStorage interface finds the Cache object matching the ...
- Web/API/CacheStorage/has The has() method of the CacheStorage interface returns a Promise that resolves to true if a ...
- 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 checks if a given Request is a key in any of ...
- 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 of the ServiceWorker API represents the scope of a service worker client. A ...
- Web/API/Client/frameType The frameType read-only property of the Client interface indicates the type of browsing context ...
- Web/API/Client/id The id read-only property of the Client interface returns the universally unique identifier ...
- Web/API/Client/postMessage The Client.postMessage() method of the Client interface allows a service worker client to send a ...
- Web/API/Client/url The url read-only property of the Client interface returns the URL of the current service worker ...
- Web/API/Clients The Clients interface of the Service Workers API represents a container for a list of Client ...
- Web/API/Clients/claim The claim() method of the of the Clients interface allows an active Service Worker to set itself ...
- Web/API/Clients/get The get () method of the Clients interface gets a service worker client matching a given id and ...
- Web/API/Clients/matchAll The matchAll() method of the Clients interface returns a Promise for a list of service worker ...
- Web/API/Clients/openWindow The openWindow() method of the Clients interface creates a new top level browsing context and ...
- Web/API/ExtendableEvent The ExtendableEvent interface extends the lifetime of the install and activate events dispatched ...
- Web/API/ExtendableEvent/ExtendableEvent The ExtendableEvent() constructor creates a new ExtendableEvent object.
- Web/API/ExtendableMessageEvent The ExtendableMessageEvent interface of the ServiceWorker API represents the event object of a ...
- Web/API/ExtendableMessageEvent/data The data read-only property of the ExtendableMessageEvent interface returns the event's data. It ...
- Web/API/ExtendableMessageEvent/ExtendableMessageEvent The Extendable MessageEvent() constructor creates a new ExtendableMessageEvent object instance.
- Web/API/ExtendableMessageEvent/lastEventId The lastEventID read-only property of the ExtendableMessageEvent interface represents, in ...
- Web/API/ExtendableMessageEvent/origin The origin read-only property of the ExtendableMessageEvent interface returns the origin of the ...
- Web/API/ExtendableMessageEvent/ports The ports read-only property of the ExtendableMessageEvent interface returns the array ...
- Web/API/ExtendableMessageEvent/source The source read-only property of the ExtendableMessageEvent returns a reference to the Client ...
- Web/API/FetchEvent The parameter passed into the ServiceWorkerGlobalScope.onfetch handler, FetchEvent represents a ...
- Web/API/FetchEvent/client The FetchEvent.client read-only property returns the Client that the current service worker is ...
- Web/API/FetchEvent/clientId The clientId read-only property of the FetchEvent returns the id of the Client that the current ...
- Web/API/FetchEvent/FetchEvent The FetchEvent() constructor creates a new FetchEvent object.
- Web/API/FetchEvent/isReload The isReload read-only property of the FetchEvent interface returns true if the event was ...
- Web/API/FetchEvent/request The request read-only property of the FetchEvent interface returns the Request that triggered ...
- Web/API/FetchEvent/respondWith The respondWith() method of the FetchEvent interface is intended for containing code that ...
- Web/API/FetchEvent_clone The InstallEvent interface represents an install action that is dispatched on the ...
- Web/API/InstallEvent The parameter passed into the oninstall handler, the InstallEvent interface represents an ...
- Web/API/InstallEvent/activeWorker The activeWorker read-only property of the InstallEvent interface returns the ServiceWorker that ...
- Web/API/InstallEvent/InstallEvent The InstallEvent() constructor creates a new InstallEvent object.
- Web/API/Navigator/serviceWorker The Navigator.serviceWorker read-only property returns the ServiceWorkerContainer object for the ...
- Web/API/NotificationEvent The parameter passed into the onnotificationclick handler, the NotificationEvent interface ...
- Web/API/NotificationEvent/action Returns the string ID of the notification button the user clicked. This value returns undefined ...
- Web/API/NotificationEvent/notification The notification read-only property of the NotificationEvent interface returns the Notification ...
- Web/API/NotificationEvent/NotificationEvent The NotificationEvent() constructor creates a new NotificationEvent object.
- Web/API/PromiseRejection This object provides information about a Promise that has been rejected.
- Web/API/PushEvent The PushEvent interface of the Push API represents a push message that has been received. This ...
- Web/API/PushEvent/PushEvent The PushEvent() constructor creates a new PushEvent object. Note that the this constructor is ...
- Web/API/PushManager The PushManager interface of the Push API provides a way to receive notifications from ...
- Web/API/PushManager/getSubscription The PushManager.getSubscription() method of the PushManager interface retrieves an existing push ...
- Web/API/PushManager/permissionState The permissionState() method of the PushManager interface returns a Promise that resolves to a ...
- Web/API/PushMessageData The PushMessageData interface of the Push API provides methods which let you retrieve the push ...
- Web/API/PushMessageData/arrayBuffer The arrayBuffer() method of the PushMessageData interface extracts push message data as an ...
- Web/API/PushMessageData/blob The blob() method of the PushMessageData interface extracts push message data as a Blob object.
- Web/API/PushMessageData/json The json() method of the PushMessageData interface extracts push message data as a JSON object.
- Web/API/PushMessageData/text The text() method of the PushMessageData interface extracts push message data as a plain text ...
- Web/API/PushSubscription The PushSubscription interface of the Push API provides a subcription's URL endpoint and allows ...
- Web/API/PushSubscription/endpoint The endpoint read-only property of the PushSubscription interface returns a USVString containing ...
- Web/API/PushSubscription/getKey The getKey() method of the PushSubscription interface returns an ArrayBuffer representing a ...
- Web/API/PushSubscription/subscriptionId The endpoint read-only property of the PushSubscription interface returns a DOMString containing ...
- Web/API/PushSubscription/toJSON The toJSON() method of the PushSubscription interface is a standard serializer: it returns a ...
- Web/API/PushSubscription/unsubscribe The unsubscribe() method of the PushSubscription interface returns a Promise that resolves to a ...
- Web/API/Push_API The Push API gives web applications the ability to receive messages pushed to them from a ...
- Web/API/Push_API/Using_the_Push_API The W3C Push API offers some exciting new functionality for developers to use in web ...
- Web/API/ServiceWorker The ServiceWorker interface of the ServiceWorker API provides a reference to a service worker. ...
- Web/API/ServiceWorker/onstatechange An EventListener property called whenever an event of type statechange is fired; it is basically ...
- Web/API/ServiceWorker/scriptURL Returns the ServiceWorker serialized script URL defined as part of ServiceWorkerRegistration. ...
- Web/API/ServiceWorker/state The state read-only property of the ServiceWorker interface returns a string representing 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/getRegistration The getRegistration() method of the ServiceWorkerContainer interface gets a ...
- Web/API/ServiceWorkerContainer/getRegistrations The getRegistrations() method of the ServiceWorkerContainer interface returns all ...
- Web/API/ServiceWorkerContainer/oncontrollerchange The oncontrollerchange property of the ServiceWorkerContainer interface is an event handler ...
- Web/API/ServiceWorkerContainer/onerror The onerror property of the ServiceWorkerContainer interface is an event handler fired whenever ...
- Web/API/ServiceWorkerContainer/onmessage The onmessage property of the ServiceWorkerContainer interface is an event handler fired ...
- Web/API/ServiceWorkerContainer/register The register() method of the ServiceWorkerContainer interface creates or updates a ...
- Web/API/ServiceWorkerGlobalScope The ServiceWorkerGlobalScope interface of the ServiceWorker API represents the global execution ...
- Web/API/ServiceWorkerGlobalScope/caches The ServiceWorkerGlobalScope.caches read-only property returns the CacheStorage object ...
- Web/API/ServiceWorkerGlobalScope/clients The clients read-only property of the ServiceWorkerGlobalScope interface returns the Clients ...
- Web/API/ServiceWorkerGlobalScope/oninstall The oninstall property of the ServiceWorkerGlobalScope interface is an event handler fired ...
- Web/API/ServiceWorkerGlobalScope/onpush The ServiceWorkerGlobalScope.onpush event of the ServiceWorkerGlobalScope interface is fired ...
- Web/API/ServiceWorkerGlobalScope/onpushsubscriptionchange The ServiceWorkerGlobalScope.onpushsubscriptionchange event of the ServiceWorkerGlobalScope ...
- Web/API/ServiceWorkerGlobalScope/registration The registration read-only property of the ServiceWorkerGlobalScope interface returns a ...
- Web/API/ServiceWorkerMessageEvent The ServiceWorkerMessageEvent interface of the ServiceWorker API contains information about an ...
- Web/API/ServiceWorkerMessageEvent/data The data read-only property of the ServiceWorkerMessageEvent interface returns the event's data. ...
- Web/API/ServiceWorkerMessageEvent/lastEventId The lastEventID read-only property of the ServiceWorkerMessageEvent interface represents, in ...
- Web/API/ServiceWorkerMessageEvent/origin The origin read-only property of the ServiceWorkerMessageEvent interface returns the origin of ...
- Web/API/ServiceWorkerMessageEvent/ports The ports read-only property of the ServiceWorkerMessageEvent interface returns an array of ...
- Web/API/ServiceWorkerMessageEvent/ServiceWorkerMessageEvent The ServiceWorkerMessageEvent() constructor creates a new ServiceWorkerMessageEvent object instance.
- Web/API/ServiceWorkerMessageEvent/source The source read-only property of the ServiceWorkerMessageEvent returns a reference to the ...
- Web/API/ServiceWorkerRegistration The ServiceWorkerRegistration interface of the ServiceWorker API represents the service worker ...
- Web/API/ServiceWorkerRegistration/active The active property of the ServiceWorkerRegistration interface returns a service worker whose ...
- Web/API/ServiceWorkerRegistration/getNotifications The getNotifications() method of the ServiceWorkerRegistration interface returns a list of the ...
- Web/API/ServiceWorkerRegistration/installing The installing property of the ServiceWorkerRegistration interface returns a service worker ...
- Web/API/ServiceWorkerRegistration/onupdatefound The onupdatefound property of the ServiceWorkerRegistration interface is an EventListener ...
- Web/API/ServiceWorkerRegistration/periodicSync The periodicSync read-only property of the ServiceWorkerRegistration interface returns a ...