DEV Community

Discussion on: Help designing web application UI

Collapse
 
jwp profile image
John Peters • Edited

I have a lot of articles on Angular that could help you.

Your biggest challenge will be CSS. To avoid the pain, start using the grid immediately, spend a good week or two digging into all it can do. Believe me, over time you'll be glad you know it.

If you already know back-end binding concepts you'll pick up on Angular binding easy. Angular is just a client side MVC - like pattern without the controller, instead it uses Routes to open the component based on the url. Yes the client routes url requests to the proper component.

From there learn how to bind content to the data, as well as issue HTTP requests (all async) to the back-end to "expand the template with the data".