Everything you need to understand to start with AngularJS
stephanebegaudeau.tumblr.com
Everything you need to understand to start with AngularJS
1–10 of 31 posts
Re: Everything you need to understand to start with AngularJS
#2Re: Everything you need to understand to start with AngularJS
#3Excellent introduction.
Re: Everything you need to understand to start with AngularJS
#4Just to clarify, double curly expressions in Angular, {{ }}, are "JS-like", basically a subset of JS + filter syntax. One goal of the expression syntax is to prevent a lot of app logic being stuck into the template itself, so the subset of JS is fairly minimal, but this is by design. This also means that the expressions are not eval()'d. Instead, they are parsed with Angular's $parse service.
Re: Everything you need to understand to start with AngularJS
#5Re: Everything you need to understand to start with AngularJS
#6Re: Everything you need to understand to start with AngularJS
#7what I am missing though (not a critic to your tutorial, just expressing my frustration as I try to learn beyond the basics) is concrete examples of how to implement specific features: authentication w/ express, nontrivial restful interaction, and interaction with Socket.IO. Most examples out there are so basic that they don't seem to keep any server state. Does anybody have some useful links?
BTW, coming from python/django, express does not seem to have an easy auth module to cover basic needs of db authentication. passport is overly complicated, and mongoose does not try to do auth. What do you hip node.js programmers use? Perhaps my problem is that I am trying to get familiar with node, express, nosql and client-side mvc frameworks at the same time and my head is just exploding. Or perhaps I am missing a framework with a full, well-documented stack! The more I try, the more I get tired of getting all these modules to work with each other :-)
Re: Everything you need to understand to start with AngularJS
#8And to learn more, go here http://egghead.io