Gets you started with a "Hello World" implementation of Ember.
Maintainer: Anthony Bull
Execute these steps from the command line, one after another:
mkdir webapp && cd webapp
npm install -g generator-ember
yo ember
grunt server
A page with "Welcome to Ember.js" should appear in your browser.
-
--skip-install
Skips the automatic execution of
bower
andnpm
after scaffolding has finished. -
--test-framework=[framework]
Defaults to
mocha
. Can be switched for another supported testing framework likejasmine
.
The Ember code is taken directly from the 1.0 RC3
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.