Socket
Socket
Sign inDemoInstall

amp-url

Package Overview
Dependencies
47
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    amp-url

Accelerated Mobile Pages (AMP) URL API library


Version published
Weekly downloads
12
increased by500%
Maintainers
1
Install size
3.69 MB
Created
Weekly downloads
 

Readme

Source

node-amp-url

Accelerated Mobile Pages (AMP) URL API node.js library. It is necessary to enable API on Google Cloud Platform and obtain API key.

Install

npm install --save amp-url

Use

const AmpUrl = require('amp-url');
const ampUrl = new AmpUrl(GOOGLE_API_KEY);

ampUrl.batchGet('https://example.com/01.html').then((cdnAmpUrl) => {
    // cdnAmpUrl
});

Method

batchGet(urls)

  • urls array|string - Target URL.
const AmpUrl = require('amp-url');
const ampUrl = new AmpUrl(GOOGLE_API_KEY);

ampUrl.batchGet([
    'https://example.com/01.html',
    'https://example.com/02.html',
    'https://example.com/03.html'
]).then((cdnAmpUrl) => {
    /* Example
    {
      "ampUrls": [
        [
          {
            "originalUrl": "https://example.com/01.html",
            "ampUrl": "https://example.com/amp/01.html",
            "cdnAmpUrl": "https://example-com.cdn.ampproject.org/c/s/example.com/amp/01.html"
          },
          {
            "originalUrl": "https://example.com/02.html",
            "ampUrl": "https://example.com/amp/02.html",
            "cdnAmpUrl": "https://example-com.cdn.ampproject.org/c/s/example.com/amp/02.htmls"
          }
        ]
      ],
      "urlErrors": [
        {
          "errorCode": "URL_IS_INVALID_AMP",
          "errorMessage": "Request URL is an invalid AMP URL.",
          "originalUrl": "https://example.com/03.html"
        }
      ]
    }
    */
});

License

MIT License.

Keywords

FAQs

Last updated on 08 Jun 2019

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc