npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

apiprefetch

v0.6.0

Published

A library for the browser that automatically skips the initial API call that JS makes if the data is already available.

Downloads

14

Readme

PrefetchAPI.js

A library for the browser that automatically skips the initial API call that JS makes if the data is already available.

It monkey-patches the browser's default XMLHttpRequest constructor, so it should "just work" with any framework, including: jQuery, AngularJS, EmberJS, BackboneJS, etc.

Build Status

Install

bower install apiprefetch

or

npm install apiprefetch

Usage

Load apiPrefetch.js before you load any other JS code, especially any that would access XMLHttpRequest.

Configure your server to preload the results of an initial API get request into a global object called apiPrefetchData with the keys equal to the endpoint path.

The value for each key should be a rendered/parsed JSON object (or a string if it's not JSON), but be sure to escape forward slashes (see security note below).

Voila, now when you go to make the initial API request, if the data's already there, it's returned without needing to make another round-trip to the server.

After the initial API request, all future requests to the same url path will actually go out and hit your API as usual.

Example

<html>
  <head>
    <title>Example</title>
    <script>
      window.apiPrefetchData = {
        "/api/title": {"title":"Game of Thrones \/ A Song of Ice and Fire"},
        "/api/description": {"description":"Winter is Coming…"}
      };
    </script>
  </head>
  <body>
    <div id="title"></div>
    <div id="description"></div>
    <script src="apiPrefetch.js"></script>
    <script src="jquery.js"></script>
    <script>
      // First call gets data rendered in the script block above
      $.getJSON('/api/title').done(function (res) {
        // Gets called on next tick, seems instantaneous to the user
        $('#title').text(res.title);

        // Makes an actual API call to the server
        $.getJSON('/api/title').done(function (res) {
          alert("The title from the server: " + res.title);
        });
      });

      // Second call also gets pre-rendered data
      $.getJSON('/api/description').done(function (res) {
        $('#description').text(res.description);
      });
    </script>
  </body>
</html>

An important note on security

Since you will likely be rendering data from users, you need to protect against XSS attacks.

To do so, escape all / characters, e.g. \/. This prevents users from injecting JS code by closing the script tag the data is rendered into.

Limitations

If you plan to use the browser's raw XMLHttpRequest class, be aware of the following:

  • In order for the library to work its magic, the xhr object it generates currently only has open and send methods.
  • Callbacks should be assigned to the xhr's onload property. Support for addEventListener and onreadystatechange isn't available yet, and likely won't be needed.
  • It does work with responseType, but only JSON. If you set xhr.responseType to "json", then xhr.response will be a parsed JSON object, not a JSON string.

FAQ

Isn't this a huge hack?

Couldn't you say the same for AJAX itself? The X stands for XML and you're fetching JSON. You're already making the browser do things it wasn't originally intended to do :)

Credit

Created by Jon Abrams