Socket
Socket
Sign inDemoInstall

workbox-navigation-preload

Package Overview
Dependencies
Maintainers
4
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

workbox-navigation-preload

This library allows developers to opt-in to using Navigation Preload in their service worker.


Version published
Weekly downloads
4.1M
increased by2.25%
Maintainers
4
Weekly downloads
 
Created

What is workbox-navigation-preload?

The workbox-navigation-preload npm package is part of the Workbox suite of tools, which are designed to make it easier to build high-quality Progressive Web Apps (PWAs). This particular package enables the use of navigation preload in service workers, which allows you to respond to navigation requests with precached content or from the network, potentially improving the performance of PWAs.

What are workbox-navigation-preload's main functionalities?

Enable navigation preload

This feature enables navigation preload in your service worker, which can improve loading performance for navigations to new pages.

workbox.navigationPreload.enable();

Disable navigation preload

This feature disables navigation preload if it's no longer needed or if you want to revert to the default behavior.

workbox.navigationPreload.disable();

Check if navigation preload is supported

This code checks if navigation preload is supported in the current browser and enables it if it is. This is useful for ensuring compatibility with a wide range of browsers.

if (workbox.navigationPreload.isSupported()) {
  workbox.navigationPreload.enable();
}

Other packages similar to workbox-navigation-preload

Keywords

FAQs

Package last updated on 09 Sep 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc