Posts

Showing posts from January, 2016

Angular 2.0 learnings

This contains links and project related to my learning of Angular 2.0. Building a new Angular2.0 app I followed this youtube vid and built a basic to do app. See the plunker here  for what I built. Its interesting because its a good guide and written in es5 not typescript. But I think its out of date (using alpha angular js library and component syntax seems to have evolved) so next I'll follow the quickstart guide on angulars site . ...and here's my implementation of  angulars quickStart implementation (still ES5) . I included a basic DI of a service which is used. It works but I know there's more elegant ways to accomplish DI. Next up, I built the Tour of Heroes tutorial on the angular 2.0 site. Its here in my github . The tutorial on the angular2 site does not include routing but John Papas github implementation does. So next is to add some routing to this app. Strategies for upgrading existing apps Some useful links I came across for dealing with 1.x a