Tutorial by Examples

In this example, 2.13.2 is the latest version. We install it via bower, specifying the particular version as ember#2.13.2 and including the save flag to persist it to bower.json. As of writing this post the latest version is 2.13.2. From the command line, in the root of your app's directory, run: ...
Since Ember Data is an Ember CLI add-on we can install it just like any other add-on by using ember install. As of writing this post the latest version is 2.13.1. From the command line, in the root of your app's directory, run: ember install [email protected]
Ember CLI is a normal npm package. To update it we have to uninstall it and then install the version we want. As of writing this post the latest version is 2.13.2. From the command line run: npm uninstall -g ember-cli npm cache clean bower cache clean npm install -g [email protected] To verif...

Page 1 of 1