1.0.5 • Published 5 years ago

fast-install-puppeteer v1.0.5

Weekly downloads
38
License
MIT
Repository
github
Last release
5 years ago

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();
  // ...
})();