Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

prefetch

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

prefetch

Customizable interaction-based link prefetching.

  • 0.1.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
45
increased by60.71%
Maintainers
1
Weekly downloads
 
Created
Source

prefetch

Customizable interaction-based link prefetching based largely on InstantcClick.

Start downloading the next page before the user even clicks!

Why Does this Exist?

There is between 250ms and 400ms from the time a user starts hovering over a link they fully intend to click and actually clicking it. That's unnecessary latency! Prefetch makes pages load up to 400ms faster by requesting them as soon as the user begins hovering over a link. Awesome, right?

Features

  • Prefetch links based on hover, mousedown, or touchstart
  • Programmatic background asset prefetching
  • Customization: disable an interaction and set a prefetch delay for hover events
  • Automatically works with dynamically added links
  • Identify any number of containers and add more after initialization
  • Identify links to never prefetch (by attribute or href) even if they're within a prefetchable container
  • Tracks links so a single link is not requested multiple times
  • Prevents attempting to prefetch links that cannot/should not be prefetched
  • Packaged as a UMD--compatible with CommonJS, AMD, and global scope

Basic Usage

var Prefetch = require('prefetch');
Prefetch.init({containers: ['.primary-nav']});

This example will listen for a mouseover event on any anchor tags within the element with class .primary-nav. If the anchor is prefetchable, it will be retrieved in the background.

A prefetchable anchor tag must meet the following criteria:

  • Must have an href attribute
  • Must not have a download attribute
  • Must not have already been prefetched
  • Must not have been blacklisted
  • The href (with hash removed) must not be the same as location.href (with hash removed)

There are two ways to blacklist a link:

  • Add a data-no-prefetch attribute to anchor tags you want to ignore
  • Use the exclusions feature from the .init() call or the .addExclusions() call

API

.init(config)

This is how you initialize Prefetch with any settings you want to pass in. You can call init as many times as you want, but be aware that, each time you do, any arguments you do not pass within config will take on the default value shown below.

Arguments
  • config: object
Example
//All options shown with default values
Prefetch.init({
  containers: [],           //An array of CSS selectors passed as strings--a delegate listener will be attached to these elements
  exclusions: [],           //An array of partial links passed as strings--if the potential prefetch link contains any of these partial links, it will be ignored
  hoverDelay: 50,           //The number of miliseconds after which a sustained hover triggers a link prefetch
  enableTouch: false,       //Whether to prefetch on touchstart and therefore on mobile
  waitForMousedown: false   //Whether to prefetch on mousedown instead of on hover
});

.prefetch(urls)

Allows you to programmatically prefetch fully-qualified URLs outside of user interaction. You can pass either a single URL or an array of URLs. This is useful if you know that a high percentage of your users navigate to a specific page from the current page. You can begin prefetching not only the page to which the user is likely to go, but also the render-blocking assets included on that page.

Arguments
  • urls: string || array of strings

.addContainers(containers)

Allows you to attach additional listeners after the .init() call is made. This can be useful if you have an app-wide Prefetch config in shared code but want to add page-specific listeners outside of that shared code.

Arguments
  • containers: array of CSS selectors as strings

.addExclusions(exclusions)

Allows you to add an array of items to the exclusions argument provided at initialization. You should not make your exclusions list long as iterating over long lists will degrade the performance gain Prefetch introduces.

Arguments
  • exclusions: array of partial URL strings

Keywords

FAQs

Package last updated on 08 Oct 2015

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