
Maintainer: Vitaly Domnikov
First make a new directory, and cd into it:
mkdir my-awesome-project && cd $_
Then install generator-aura:
npm install generator-aura
Run yo aura, optionally passing an app name:
yo aura [app-name]
Finally, install npm and bower dependencies:
npm install && bower install --dev
Available generators:
Generates a widget in app/widgets.
Example:
yo aura:widget sample
Produces app/widgets/sample/main.js:
Generates a extension in app/extensions.
Example:
yo aura:extension storage
Produces app/extensions/storage.js:
See the contributing docs