Socket
Book a DemoInstallSign in
Socket

download-chromium

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

download-chromium

Download chromium!

latest
Source
npmnpm
Version
3.0.0
Version published
Maintainers
1
Created
Source

download-chromium

CI

Download Chromium!

Caches executables locally so you never download them twice.

Comes with a convenient CLI, so you can do things like this:

$ $(download-chromium) --headless --screenshot --disable-gpu https://twitter.com/

Usage

Use the CLI:

$ download-chromium
Downloading Chromium r499413...Done!
/Users/julian/.chromium-cache/chromium-mac-499413/chrome-mac/Chromium.app/Contents/MacOS/Chromium

Or use the JavaScript API:

const download = require('download-chromium')

const exec = await download()
console.log(`Downloaded Chromium to ${exec}`)
$ node example.js
Downloaded Chromium to /Users/julian/.chromium-cache/chromium-mac-499413/chrome-mac/Chromium.app/Contents/MacOS/Chromium

Installation

# for the CLI

$ npm install -g download-chromium

# for the API

$ npm install download-chromium

API

download

download({ 
	platform = currentPlatform, 
	revision = '499413', 
	log = false, 
	onProgress = undefined, 
	installPath = '{__dirname}/.local-chromium' })

Returns a Promise resolving with the Chromium executable path.

  • installPath: set the install path if you can't write to your node_modules, eg from within an electron packaged app (installPath: require('electron').app.getPath('userData'))
  • onProgress: track download progress. onProgress receives one argument { percent, transferred, total }

Kudos

This script was based on https://github.com/puppeteer/puppeteer/blob/11d94525c821ab1bb6e059f3b998a8660f597348/utils/ChromiumDownloader.js.

License

MIT

FAQs

Package last updated on 15 Apr 2023

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