This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the specification changes.
The Clients
interface of the Service Workers API represents a container for a list of Client
objects.
Clients.get()
id
and returns it in a Promise
.Clients.matchAll()
Promise
. Include the options
parameter to return all service worker clients whose origin is the same as the associated service worker's origin. If options
are not included, the method returns only the service worker clients controlled by the service worker. Clients.openWindow()
Client
in a new browser window.Clients.claim()
clients.matchAll(options).then(function(clients) { for (i = 0 ; i < clients.length ; i++) { if (clients[i] === 'index.html') { clients.openWindow(clients[i]); // or do something else involving the matching client } } });
Specification | Status | Comment |
---|---|---|
Service Workers The definition of 'Clients' in that specification. | Working Draft | Initial definition |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | 40.0 | 44.0 (44.0)[1] | No support | ? | No support |
Feature | Android | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|
Basic support | ? | 44.0 (44.0) | (Yes) | No support | ? | No support | ? |
[1] Service workers (and Push) have been disabled in the Firefox 45 Extended Support Release (ESR.)
Promise
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Clients