Reputation: 493
I have started my hands on Ember.js . I have googled and found few tutorials on it. But still finding it difficult. Can anyone suggest me , the order in which things have to be learned like first routing(router,route) then next next. And also learning the syntax, various other functions used. From the very basic to advanced. Note: I am a beginner to JavaScript and have a level1 understanding of it. Thanks in advance for your help.
Upvotes: 2
Views: 83
Reputation: 4488
This link was really helpfull to me :
http://emberigniter.com/5-essential-ember-2.0-concepts/
and then
https://guides.emberjs.com/v2.2.0/
It gives you a big picture. I came to Ember from a backbone and angular background. And at first it seemed like a combination of the two since it has this double binding but the models are wrapped in Ember models ember arrays etc. If I were you I would start by building simple components running the ember-cli command. Of course you'll curse, its kind of part of learning something new. The hardest thing for me was Ember-Data, and the fact that there are two many Ember versions, so getting the right documentation is kind of annoying at first.
Hope that links clears some stuff up
Upvotes: 1
Reputation: 3207
you can go through ember guides, watch screencasts and everything else, this resources assume that you know javascript well so learn javascript first then you can move to learning ember.js
Upvotes: 1