Ember.js

Ember.js is a JavaScript framework that does all of the heavy lifting that you'd normally have to do by hand. There are tasks that are common to every web app; Ember.js does those things for you, so you can focus on building killer features and UI.
Building Ember.js
- Ensure that Node.js and bower are installed.
- Run
npm installto ensure the required dependencies are installed. - Run
bower installto ensure required web dependencies are installed. - Run
npm run buildto build Ember.js. The builds will be placed in thedist/directory.
npm install troubleshooting
If you encounter a problem with downloading dependencies like:
npm ERR! registry error parsing json
consider upgrading npm with:
npm install -g npm@latest
You can find more information in Upgrading on *nix (OSX, Linux, etc.) npm wiki page.
Contribution
See CONTRIBUTING.md
How to Run Unit Tests
Pull requests should pass the Ember.js unit tests. Do the following to run these tests.
Follow the setup steps listed above under Building Ember.js.
To start the development server, run
npm start.To run all tests, visit http://localhost:4200/.
To test a specific package, visit
http://localhost:4200/tests/index.html?package=PACKAGE_NAME. ReplacePACKAGE_NAMEwith the name of the package you want to test. For example:
To test multiple packages, you can separate them with commas.
You can also pass jquery=VERSION in the test URL to test different
versions of jQuery.
From the CLI
Install phantomjs from http://phantomjs.org.
Run
npm testto run a basic test suite or runTEST_SUITE=all npm testto run a more comprehensive suite.
From ember-cli
ember test --server- connect the browsers you want
- if phantom didn't connect automatically, you can run
./bin/connect-phantom-to <optional-port>
To run a specific browser, you can use the --launch flag
ember test --server --launch SL_Firefox_Currentember test --launch SL_Firefox_Current