Ember.js earlier had an easy to understand todo mvc guide. I have tried to reproduce the same with the ember.js version 2.1.0. Many changes have happened in ember and the todo mvc guide also has various versions. This is my attempt to be upadted.
In this version, ember components have taken the cenrte stage (instead of Views and Controller).
A more detailed note is added in the web link: http://govidat.github.io/blog/tutorial/2015/11/30/emberjs-2.1.0-todomvc.html
You will need the following things properly installed on your computer.
git clone <repository-url>
this repository- change into the new directory
npm install
bower install
ember server
- Visit your app at http://localhost:4200.
Make use of the many generators for code, try ember help generate
for more details
ember test
ember test --server
ember build
(development)ember build --environment production
(production)
Specify what it takes to deploy your app.