Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
gulp-electron-downloader
Advanced tools
A gulp.js plugin to download electron. Super simple, it will simply download (and cache) and extract to a directory of your choice. You can run with zero-configuration, and use the defaults. Or configure as you wish.
This plugin makes it really easy to get any electron binary you need, where as most others only download electron for the platform for the host.
If you're wanting to build an electron release, you'll need another plugin for that.
Install gulp plugin package:
npm install --save-dev gulp-electron-downloader
The most simple is the following:
var gulp = require('gulp');
var electronDownloader = require('gulp-electron-downloader');
gulp.task('download-electron', function(cb){
electronDownloader(cb);
});
gulp.task('default', ['download-electron']);
This will download the latest release of electron, matching the platform and architecture of the host. The ./electron/cache
folder will be used to store downloads, and the final output will end up ./electron/binaries
.
The plugin makes unauthenticated requests to GitHub API. If you get rate-limit errors, use your own token by setting the env var GITHUB_OAUTH_TOKEN
.
electronDownloader([options], callback)
You can customise what is downloaded with the following:
version
- the version of electron you want to download. This defaults to the latest release.platform
- the platform you want to download. Choices are darwin
, mas
, win32
, linux
. This defaults to the host platform.arch
- the architecture of the platform you want to download. This defaults to the host architecture.cacheDir
- the location of the caching directory in which downloads will be stored. This defaults to ./electron/cache
.outputDir
- the location of the unzipped binary. This defaults to ./electron/binaries/platform-arch/
.downloadMirror
- a function that provided the official electron download URL for a particular version, returns a URL to a mirror of your choice. An example for China:downloadMirror: function (downloadUrl) {
return downloadUrl.replace('https://github.com/atom/electron/releases/download/v', 'https://npm.taobao.org/mirrors/electron/');
}
FAQs
A gulp.js plugin to help download electron.
The npm package gulp-electron-downloader receives a total of 1 weekly downloads. As such, gulp-electron-downloader popularity was classified as not popular.
We found that gulp-electron-downloader demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.