DEV Community

Discussion on: Angular 11.0 Good Stuff

Collapse
 
katnel20 profile image
Katie Nelson

Thanks Javaman2.

I have already installed Node.js, Angular 8 and VS Code. I played with some of the structural directives and used the interpolation syntax. Now I need to put it all together with form elements and data binding.

I guess I was looking for some project example or tutorial that I could step through and see how it all fits.

Thread Thread
 
negue profile image
negue

I'd say just think of a little app and then add piece by piece.

But I have some project examples:

As for tutorials the tour of heroes is quite good for beginners.

Thread Thread
 
jwp profile image
John Peters

Awesome Katie...
The problem I found with pre-made projects is that they are usually outdated and not maintained. That's why creating your own project is better. You don't have to use reactive binding now (that'll come later) you can just use *ngFor in html to do the binding.

e.g.

To move into Forms this is Angular's way of implementing form validation, ultimately you relinquish control of the values to the Forms components. It's a good tool but requires a bit of study.