Results 1 - 20 of 117

ServiceWorkerState

The ServiceWorkerState is associated with its ServiceWorker's state.
Service Workers ServiceWorker

ExtendableMessageEvent

The ExtendableMessageEvent interface of the ServiceWorker API represents the event object of a message event fired on a service worker (when a channel message is received on the ServiceWorkerGlobalScope from another context) — extends the lifetime of such events.
API Experimental ExtendableMessageEvent Interface Reference Service Workers

ServiceWorkerRegistration.scope

The scope read-only property of the ServiceWorkerRegistration interface returns a unique identifier for a service worker registration. The service worker must be on the same origin as the document that registers the ServiceWorker.
API Property Reference scope Service Workers ServiceWorkerRegistration

ServiceWorkerRegistration.unregister()

The unregister method of the ServiceWorkerRegistration interface unregisters the service worker registration and returns a Promise. The promise will resolve to false if no registration was found, otherwise it resolves to true irrespective of whether unregistration happened or not (it may not unregister if someone else just called ServiceWorkerContainer.register with the same scope.) The service worker will finish any ongoing operations before it is unregistered.
API Method Reference Service Workers ServiceWorkerRegistration unregister

Clients.get()

The get() method of the Clients interface gets a service worker client matching a given id and returns it in a Promise.
API Clients Experimental get Method Reference Service Workers