![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
atom-shell
Advanced tools
NOTICE GitHub renamed Atom Shell to Electron. This module has been renamed to electron-prebuilt: https://www.npmjs.com/package/electron-prebuilt
Use electron-prebuilt for versions >= 0.24.0
Install atom-shell prebuilt binaries for command-line use using npm.
Works on Mac, Windows and Linux OSes that Atom Shell supports (e.g. Atom Shell does not support Windows XP).
Atom Shell is a javascript runtime that bundles Node.js and Chromium. You use it similar to the node
command on the command line for executing javascript programs. This module helps you easily install the atom-shell
command for use on the command line without having to compile anything.
Download and install the latest build of atom-shell for your OS and add it to your projects package.json
as a devDependency
:
npm install atom-shell --save-dev
This is the preferred way to use atom-shell, as it doesn't require users to install atom-shell globally.
You can also use the -g
flag (global) to symlink it into your PATH:
npm install -g atom-shell
If that command fails with an EACCESS
error you may have to run it again with sudo
:
sudo npm install -g atom-shell
Now you can just run atom-shell
to run atom-shell:
atom-shell
First you have to write an atom shell application
Then you can run your app using:
atom-shell your-app/
If you require atom-shell
inside your node app it will return the file path to the binary.
Use this to spawn atom shell
var atom = require('atom-shell')
var proc = require('child_process')
// will something similar to print /Users/maf/.../Atom
console.log(atom)
// spawn atom-shell
var child = proc.spawn(atom)
FAQs
Install atom-shell prebuilts using npm
The npm package atom-shell receives a total of 2 weekly downloads. As such, atom-shell popularity was classified as not popular.
We found that atom-shell demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.