
Security News
Security Community Slams MIT-linked Report Claiming AI Powers 80% of Ransomware
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.
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
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.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.

Research
/Security News
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.