Working with the Cache API
Explore how to work with the Cache API in progressive web applications to open, add, and manage cached assets using service workers. Understand key methods like add, addAll, put, delete, and match to enhance offline capabilities and efficiently handle cached resources in your PWA.
We'll cover the following...
We'll cover the following...
The caches interface
The Cache API provides every web application with a caches interface, which gives us access to the cache storage of our application. Multiple sub-caches can be opened inside the cache storage. Let’s see how to open a cache in it using the caches interface.
The caches.open(name: string) method
The open(name) method will open the cache (with the given name) if it already exists. Otherwise, it will create one and then open it.
In the above example:
- Open a cache named
my-cache. - Return a promise handled by a
.then()call using thecaches.open()method. - Get the
cacheobject after resolving the returned promise, which we can use inside thethen()block.
The Cache.add(request: string) method
The .add() ...