JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 511672
  • Score
    100M100P100Q182431F
  • License MIT

Base class for puppeteer-extra plugins.

Package Exports

  • puppeteer-extra-plugin

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (puppeteer-extra-plugin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

puppeteer-extra-plugin

Installation

yarn add puppeteer-extra-plugin

Base class for puppeteer-extra plugins.

Provides convenience lifecycle methods to avoid boilerplate.

API

I've refactored the code to TypeScript and the generated typedoc API documentation can be found here.

Unfortunately the generated documentation is currently not as nice as the former documentation.js one but I'm working on it. :-)

Changelog

v3.1.0

  • Now written in TypeScript 🎉
  • Breaking change: Now using a named export:
// Before
const PuppeteerExtraPlugin = require('puppeteer-extra-plugin')

// After (>= v3.1.0)
const { PuppeteerExtraPlugin } = require('puppeteer-extra-plugin')