make a crud web app with Angular 5

Manish
All is Web
Published in
2 min readJan 23, 2018
it’s time to take the next step. move to angular 5.x | Photo by Jake Hills on Unsplash

i have been using angularjs for quite long now and was really put off by all the changes in angular2+. but now that the framework has been stable with consistent apis in successive versions, i went through the details of v5.x and found it super awesome.

some of the things that have been made simpler if you are coming from angular 1.x background —

  • easily composable components
  • advanced in-built router — no need to use ui-router anymore
  • rxjs feature leverages in http calls
  • very less number of directives
  • clean syntax for bindings
  • and very important — Typescript — saves a lot of time during and post development for not having to go thorugh type related silly errors

alright, alright. so, i am writing this series of posts for building a crud web application in angular 5.x. you can follow this series and learn how to build a medium to complex web app in angular 5.x.

what i have kept in mind is to keep highlighting important stuff for easy understanding for starter to intermediate level developers. i will also try to make a note for places where you need to map the context from your angular 1.x knowledge, so it’s easy for you to follow.

so here we go-

--

--