Clients

Our volunteers haven't translated this article into Afrikaans yet. Join us and help get the job done!

This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for the proper prefixes to use 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 spec changes.

The Clients interface of the Service Workers API represents a container for a list of Client objects.

Methods

Clients.matchAll()
Gets a list of service worker clients and returns them in a 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()
Opens a service worker Client in a new browser window.
Clients.claim()
Allows an active Service Worker to set itself as the active worker for a client page when the worker and the page are in the same scope. 

Examples

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
    }
  }
});

Specifications

Specification Status Comment
Service Workers
The definition of 'Clients' in that specification.
Working Draft Initial definition

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support 40.0 ? Not supported ? Not supported
Feature Android Firefox Mobile (Gecko) Firefox OS IE Mobile Opera Mobile Safari Mobile Chrome for Android
Basic support ? ? ? Not supported ? Not supported ?

See also

Document Tags and Contributors

Contributors to this page: Sebastianz, chrisdavidmills, jpmedley, fscholz, teoli, Meggin
Last updated by: Sebastianz,