1.2.0-alpha.2 • Published 5 years ago

amp-toolbox-cache-list v1.2.0-alpha.2

Weekly downloads
1,048
License
Apache-2.0
Repository
github
Last release
5 years ago

AMP-Toolbox Cache List

npm version

Lists known AMP Caches, as available at https://cdn.ampproject.org/caches.json.

By default, it uses a one-behind strategy to fetch the caches. This can be customised by passing a custom fetch strategy to the constructor.

Usage

  const Caches = require('amp-toolbox-cache-list');

  // Lists known AMP Caches
  const caches = await new Caches().list();

  // Retrieves a specific AMP cache
  const googleAmpCache = await caches.get('google');