Socket
Socket
Sign inDemoInstall

amp-api

Package Overview
Dependencies
65
Maintainers
4
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    amp-api

Warm/Bust/Validate Amp Cache


Version published
Weekly downloads
9
increased by200%
Maintainers
4
Install size
8.04 MB
Created
Weekly downloads
 

Readme

Source

node-amp-api

node-amp-api is a node library that loads content into amp, updates amp cache, and validates urls against amp.

Contents

  • Installation
  • Usage
  • Contributing

Installation

npm i amp-api --save --save-exact

Usage

Create an instance of AmpApi

const AmpApi = require('amp-api');

const ampApi = new AmpApi({
  // api key from google developer console
  apiKey: 'keyfromgooglecosole',
  // a logger that has info, warn, error, and fatal (defaults to console)
  log: logger, 
  // path on your file system to your private key
  keyPath: '/path-to/file-system/private-key.pem'
});

Validate a url, returns Promise

ampApi
  .validateAmpUrl(
    'https://fastcompany.com/40467645/how-pie-became-a-powerful-punchline-in-political-provocation'
  )

Batch Get Urls to Load in Amp, returns Promise

ampApi
      .batchGet({
        lookupStrategy: 'FETCH_LIVE_DOC',
        urls: [
          'https://amp.fastcompany.com/40491026/james-corden-lives-in-the-moment-heres-how'
        ]
      })

Update google's cache, returns Promise

ampApi
    .updateCache(
        'https://amp.fastcompany.com/40491026/james-corden-lives-in-the-moment-heres-how'
    )

Contributing

Open an issue.

Get an api key:

https://console.developers.google.com/apis/dashboard

Follow google's directions on hosting the public key:

https://developers.google.com/amp/cache/update-cache

Example here:

https://www.fastcompany.com/.well-known/amphtml/apikey.pub

Update local .env.

Code, test, make a PR, reference the issue.

Keywords

FAQs

Last updated on 21 Nov 2017

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