| [ Web Proxy ] |
| Viewing: https://developer.mozilla.org/ja/docs/Web/API/WorkerGlobalScope/caches | [Back] [Original] |
Get to know MDN better
self.addEventListener("install", (event) => {
event.waitUntil(
self.caches
.open("v1")
.then((cache) =>
cache.addAll([
"/",
"/index.html",
"/style.css",
"/app.js",
"/image-list.js",
"/star-wars-logo.jpg",
"/gallery/",
"/gallery/bountyHunters.jpg",
"/gallery/myLittleVader.jpg",
"/gallery/snowTroopers.jpg",
]),
),
);
});
| Service Workers Nightly # self-caches |
WorkerGlobalScope| Web Proxy Viewer | New URL | Original Page |