AMP-Toolbox Cache URL
Translates an URL from the origin to the AMP Cache URL format, according to the specification
available in the AMP documentation. This includes the SHA256 fallback URLs used by the AMP Cache on invalid human-readable cache urls.
Usage
Including the Module
ES Module (Browser)
import {ampToolboxCacheUrl} from 'amp-toolbox-cache-url';
CommonJs (Node)
const ampToolboxCacheUrl = require('amp-toolbox-cache-url').createCacheUrl;
UMD (Node, Browser)
In the browser, include the UMD module in an HTML <script>
tag. If using node, replace window
with global
.
const {ampToolboxCacheUrl} = window.AmpToolboxCacheUrl;
Using the module
ampToolboxCacheUrl.createCacheUrl('cdn.ampproject.org', 'https://www.example.com').then((cacheUrl) => {
console.log(cacheUrl);
});
ampToolboxCacheUrl.createCurlsSubdomain('https://www.example.com').then((curlsSubdomain) => {
console.log(curlsSubdomain);
});