generator-atom-shell-app

generate apps for atom-shell

Stars
6

generator-atom-shell-app Build Status

This is a baseline app for atom-shell that pretty much is the instructions that are given on in Atom-Shell's Getting Started

Getting Started

You will need to have Yeoman installed.

$ npm install -g yo

To install generator-atom-shell-app from npm, run:

$ npm install -g generator-atom-shell-app

Create a new empty directory for you project, and cd into it:

$ mkdir app-name && cd $_

Finally, initiate the generator from within your application directory:

$ yo atom-shell-app

Running

To run the app, just run $ npm start. A window will open with your application embedded within atom-shell.

Development

To build on the the app all the files reside in the application directory.

<% _appName %>
└── app
    ├── package.json
    ├── main.js*
    └── index.html

With atom-shell the entry point is a javascript file specified in the package.json and in this application it is main.js

ready for more atom-shell docs

Packaging

To package your application as a distributable binary, just run:

$ grunt package

The distributable file will be created in the /bin directory at the root of your project.

See the atom-shell application distribution wiki for more info.

License

MIT