Gets you started with a "Hello World" implementation of Ember.
Maintainer: Anthony Bull
First, if you have not installed yo yet via npm, do this:
npm install -g yo grunt-cli bower
After installing yo, execute these steps one after another:
npm install -g generator-embermkdir webapp && cd webappyo embergrunt server --force
A page with "Welcome to Ember.js" should appear in your browser.
-
--skip-installSkips the automatic execution of
bowerandnpmafter scaffolding has finished. -
--test-framework=[framework]Defaults to
mocha. Can be switched for another supported testing framework likejasmine. -
--coffeeEnable support for CoffeeScript.
You need to make sure that npm is on your path. Add the following to your .bash_profile (or .bashrc):
PATH=/usr/local/share/npm/bin:$PATH
The Ember code is taken directly from the 1.0 RC5
See the contributing docs
When submitting an issue, please follow the guidelines. Especially important is to make sure Yeoman is up-to-date, and providing the command or commands that cause the issue.
When submitting a bugfix, write a test that exposes the bug and fails before applying your fix. Submit the test alongside the fix.
When submitting a new feature, add tests that cover the feature.
