Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

fast-install-puppeteer

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fast-install-puppeteer

a fast way to install puppeteer.

latest
Source
npmnpm
Version
1.0.5
Version published
Maintainers
1
Created
Source

a fast way to install puppeteer.

when we install puppeteer, will download a local-chromium from https://storage.googleapis.com, but most of time, we will get a timeout error, because our network can't connect to the host, unless you have a VPN, fortunately, there have some mirrors, we can use it download local-chromium successfully and fastly;

I strongly recommend that you should use 'yarn' rather than 'npm', if you have a try, I think you will fall in love with it;

  • Install

I will install a latest version by the default, if you want to a specified version, you can set a property 'puppeteer_version' in your local package.json file.

yarn add fast-install-puppeteer
// or
npm i fast-install-puppeteer
  • usage
const puppeteer = require('fast-install-puppeteer');

(async () => {
  const browser = await puppeteer.launch();
  // ...
})();

Keywords

puppeteer

FAQs

Package last updated on 20 Jul 2019

Did you know?

Socket

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