electron/npm/README.md

55 lines
1.6 KiB
Markdown
Raw Normal View History

2014-10-20 04:17:38 +00:00
# atom-shell
2014-10-20 05:39:23 +00:00
[![build status](http://img.shields.io/travis/mafintosh/atom-shell.svg?style=flat)](http://travis-ci.org/mafintosh/atom-shell)
2014-10-20 05:39:17 +00:00
Install [atom-shell](https://github.com/atom/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](https://github.com/atom/atom-shell/issues/691)).
2014-10-20 04:36:12 +00:00
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.
## Installation
Download and install the latest build of atom-shell for your OS and symlink it into your PATH:
2014-10-20 04:17:38 +00:00
```
npm install -g atom-shell
2014-10-20 04:36:12 +00:00
```
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
```
## Usage
First you have to [write an atom shell application](https://github.com/atom/atom-shell/blob/master/docs/tutorial/quick-start.md#write-your-first-atom-shell-app)
Then you can run your app using:
```
atom-shell your-app/
```
2014-10-20 07:16:35 +00:00
## Programmatic usage
If you require `atom-shell` inside your node app it will return the file path to the binary.
Use this to spawn atom shell
``` js
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)
```