This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The NavigationPreloadManager
interface of the the Service Worker API provides methods for managing the preloading of resources with a service worker.
NavigationPreloadManager.enable()
Promise
that resolves when navigation preloading is enabled.NavigationPreloadManager.disable()
Promise
that resolves when navigation preloading is disabled.NavigationPreloadManager.setHeaderValue()
Service-Worker-Navigation-Preload
header and returns an empty Promise
.NavigationPreloadManager.getState()
Promise
that resolves to an object with properties indicating whether preload is enabled and the contents of the Service-Worker-Navigation-Preload
.addEventListener('activate', event => { event.waitUntil(async function() { if (self.registration.navigationPreload) { // Enable navigation preloads! await self.registration.navigationPreload.enable(); } }()); });
The following example shows the implementation of a fetch event that uses a preloaded response.
addEventListener('fetch', event => { event.respondWith(async function() { // Respond from the cache if we can const cachedResponse = await caches.match(event.request); if (cachedResponse) return cachedResponse; // Else, use the preloaded response, if it's there const response = await event.preloadResponse; if (response) return response; // Else try the network. return fetch(event.request); }()); });
Specification | Status | Comment |
---|---|---|
Service Workers The definition of 'NavigationPreloadManager' in that specification. | Editor's Draft | Initial definition. |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | 62 | ? | ? | 49 | ? |
Feature | Android Webview | Chrome for Android | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|
Basic support | 62 | 62 | ? | ? | ? | 49 | ? |
© 2005–2018 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/NavigationPreloadManager