Hi Katie,
Unfortunately to me, the Angular.io site is not really great in getting a person started from scratch.
I had the advantage of already understanding binding from the MVVM world in C#.
The best way, in my opinion is to get Angular onto your system and use the Angular command line interface to create a project. You will be able to serve it up using the command "ng serve". From there just start experimenting by changing what is displayed. Then learn the concept of Binding using the *ngFor stuff in the HTML.
Once you get that, your interest will explode because you have an actual lab that you own and control. The key to getting going in new stuff is to maintain super-high interest. If you can do this with Angular your skills are super-marketable now.
Welcome tag moderator AKA Unofficial DEV cheerleader. While most of my friends are found on SnapChat or Tic-Toc, you can find me here. And I OOP, but Iām not a VSCO girl.
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.
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.
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
Hi Katie,
Unfortunately to me, the Angular.io site is not really great in getting a person started from scratch.
I had the advantage of already understanding binding from the MVVM world in C#.
The best way, in my opinion is to get Angular onto your system and use the Angular command line interface to create a project. You will be able to serve it up using the command "ng serve". From there just start experimenting by changing what is displayed. Then learn the concept of Binding using the *ngFor stuff in the HTML.
Once you get that, your interest will explode because you have an actual lab that you own and control. The key to getting going in new stuff is to maintain super-high interest. If you can do this with Angular your skills are super-marketable now.
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.
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.
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.