Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

tiny-puppeteer

suhaotian9MIT1.6.0

Install puppeteer faster

readme

Tiny puppeteer

Install puppeteer fast

install

yarn add tiny-puppeteer

or

npm install tiny-puppeteer

Usage

const {launch} = require("tiny-puppeteer");
const browser = await launch({
  headless: false,
  // executablePath: default is use chrome path
});

Warn

  • You should had install chrome, because the executablePath depends chrome
{
  "name": "tiny-puppeteer",
  "description": "Install puppeteer faster",
  "version": "1.6.0",
  "main": "index.js",
  "license": "MIT",
  "repository": "github:suhaotian/tiny-puppeteer",
  "dependencies": {
    "puppeteer-core": "^1.9.0"
  }
}