Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
grunt-download-atom-shell
Advanced tools
Grunt tasks for downloading atom-shell, and the compatible version of chromedriver
.
Install npm package, next to your project's Gruntfile.js
file:
npm install --save-dev grunt-download-atom-shell
Add this line to your project's Gruntfile.js
:
grunt.loadNpmTasks('grunt-download-atom-shell');
version
- Required The version of atom-shell you want to download.outputDir
- Required Where to put the downloaded atom-shell.downloadDir
- Where to find and save cached downloaded atom-shell.symbols
- Download debugging symbols instead of binaries, default to false
.rebuild
- Whether to rebuild native modules after atom-shell is downloaded.apm
- The path to apm.token
- The OAuth token to use for GitHub API requests.Add the necessary configuration to your Gruntfile.js
:
module.exports = function(grunt) {
grunt.initConfig({
'download-atom-shell': {
version: '0.20.3',
outputDir: 'my-dependencies'
}
});
};
or your Gruntfile.coffee
:
module.exports = (grunt) ->
grunt.initConfig
'download-atom-shell':
version: '0.20.3'
outputDir: 'my-dependencies'
Then you can download atom-shell to the path you specified:
$ grunt download-atom-shell
If you're doing selenium-testing of your atom-shell app, you'll need chromedriver
, which is distributed with atom-shell. To download it into the atom-shell directory:
$ grunt download-atom-shell-chromedriver
FAQs
Grunt task to download atom-shell
The npm package grunt-download-atom-shell receives a total of 0 weekly downloads. As such, grunt-download-atom-shell popularity was classified as not popular.
We found that grunt-download-atom-shell demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.