Hi, It's a need to know that you have to import your operators. That's a bit of a PITA, until you find that ;)
1. Yes, I took the quick-start sample, from angualr.io and worked from that. While learning, don't spend too much time on figuring out stuff you need to build. angular-cli will take care of this for most applications. (the new version is/will be using webpack btw) 2. Noted ;) 3. yep. The 'ease of use' of NG1 came also with a price to pay. A lot of 'magic' happened behind the curtain, If you didn't know what was happening behind that curtain, it became very easy to build a dog-slow app. NG2 still allow you to hydrate your template with JSON very easily. <my-trav [showData]="data"></my-trav> That's easy enough isn't it? ;) Just 1 single element to traverse (when needed) an JSON/Object/array/primitive Well, after you created the needed component it is at least. The component itself is also relatively easy to build. And, (I can not stress this enough!) it put's you in full control of what happens. You decide on a very fain-grained level how and what gets displayed. This is something that was much harder to do in NG1! Regards Sander -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/angular. For more options, visit https://groups.google.com/d/optout.
