--- title: WindowOrWorkerGlobalScope.caches slug: Web/API/caches translation_of: Web/API/WindowOrWorkerGlobalScope/caches original_slug: Web/API/WindowOrWorkerGlobalScope/caches ---

{{APIRef()}}{{SeeCompatTable}}

La propiedad de sólo-lectura caches, de la interfaz {{domxref("WindowOrWorkerGlobalScope")}}, devuelve el objeto {{domxref("CacheStorage")}} asociado al contexto actual. Este objeto habilita funcionalidades como guardar assets para su utilización offline, y generar respuestas personalizadas a las peticiones.

Sintaxis

var myCacheStorage = self.caches; // or just caches

Valor

Un objeto {{domxref("CacheStorage")}}.

Ejemplo

El siguiente ejemplo muestra la forma en la que utilizarías una cache en un contexto de service worker para guardar assets offline.

this.addEventListener('install', function(event) {
  event.waitUntil(
    caches.open('v1').then(function(cache) {
      return cache.addAll(
        '/sw-test/',
        '/sw-test/index.html',
        '/sw-test/style.css',
        '/sw-test/app.js',
        '/sw-test/image-list.js',
        '/sw-test/star-wars-logo.jpg',
        '/sw-test/gallery/',
        '/sw-test/gallery/bountyHunters.jpg',
        '/sw-test/gallery/myLittleVader.jpg',
        '/sw-test/gallery/snowTroopers.jpg'
      );
    })
  );
});

Especificaciones

Especificación Estado Comentario
{{SpecName('Service Workers', '#self-caches', 'caches')}} {{Spec2('Service Workers')}} Definido en un WindowOrWorkerGlobalScope parcial en la última especificación.
{{SpecName('Service Workers')}} {{Spec2('Service Workers')}} Definición inicial.

Compatibilidad de Navegadores

{{CompatibilityTable}}

Característica Chrome Firefox (Gecko) Internet Explorer Opera Safari
Soporte Básico 40.0 {{CompatGeckoDesktop(42)}}
{{CompatGeckoDesktop(52)}}[1]
{{CompatNo}} {{CompatUnknown}} {{CompatNo}}
Característica Android Chrome para Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Soporte Básico {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatGeckoMobile(42)}}
{{CompatGeckoMobile(52)}}[1]
{{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}}

[1] las caches se definen ahora en el mixin {{domxref("WindowOrWorkerGlobalScope")}}.

Ver también