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

@ampproject/amp-sw

v0.1.4

Published

A service worker library to turn your AMP pages into PWA with network resiliency.

Downloads

392

Readme

build

AMP Service worker

AMP service worker is a service worker library for your AMP documents.

Purpose: Enhance network resiliency and optimize AMP asset reuse for AMP documents.

Core use cases:

  • Cache AMP scripts with a stale-while-revalidate strategy for a longer duration than the default http response headers indicate.
  • Cache valid visited AMP documents, and serve only in case of flaky network conditions.
  • Cache assets which are critical to a page with a given strategy.
  • Cache an offline page in order to show when a user navigates to a page which was previously not visited.
  • Prefetch outgoing links from an AMP page.

Usage

To take advantage of AMP service worker, you'll need to host a resource loaded into the browser. Start by following these steps:

  • Host a service worker file at the same directory level as your AMP web app/ AMP page.
  • Add amp-install-serviceworker(https://amp.dev/documentation/components/amp-install-serviceworker) to your AMP documents and point it your service worker file. e.g.
<amp-install-serviceworker
  src="https://www.your-domain.com/serviceworker.js"
  data-iframe-src="https://www.your-domain.com/install-serviceworker.html"
  layout="nodisplay">
</amp-install-serviceworker>
  • Add the following code to your service worker file to get the benefits of AMP service worker out of the box.
importScripts('https://cdn.ampproject.org/sw/amp-sw.js');
AMP_SW.init();
  • You can configure amp service worker to customize the behavior of the service worker to fit your needs. e.g. You can cache your static assets, control your document timeout limits or add an offline page. Read more in modules section.
AMP_SW.init({
  assetCachingOptions: [{
    regexp: /\.(png|jpg|woff2|woff|css|js)/,
    cachingStrategy: 'CACHE_FIRST',
  }],
  offlinePageOptions: {
    url: '/offline.html',
    assets: [],
  },
});

Modules

The AMP service worker is built up of the following modules:

  1. AMP caching module is responsible for caching the AMP binaries released as a part deployment cycle. It is a non-configurable module and has the defaults based on AMP's release cycle.
  2. Document caching module is the module which is responsible for caching the AMP documents. This module serves the page from cache(if available) is the network request fails or does not serve within a configurable time limit.
  3. Asset caching module is a lazily loaded and optional, it can be used to cache the static assets like images/ fonts etc. You can give the reg-exp for matching assets and the caching strategy(CACHE_FIRST/NETWORK-FIRST/CACHE-ONLY) for the same.
  4. Offline page module can be used to introduce an offline page to your web app. AMP_SW only caches the documents which the user has already visited. If in the absence of the network the user tries to navigate to a page which is not available in the cache, this offline page is shown as a backup to let the user know what happened.
  5. Link prefetch module provides link prefetch capabilities to the browsers which do not support link rel=prefetch. You can use this to prefetch links and serve them from the service worker cache for the next time.

While amp-sw is divided into smaller sub modules, the core funationality of this project relies on the Workbox project. The amp-sw modules also extend parts of the Workbox project.