DEV Community

Kaleb M
Kaleb M

Posted on

5

Best Courses / Resources / Tutorials to Learn Typescript & Angular?

Hi all -

I've began the journey of learning both Typescript and Angular, and would love to know of your favorite resources.

My goal is to take courses in each, then build a quick project to put the course info to test!

Here's specifically some of the resources I'm looking for:

  • Courses
  • Blogs / Articles
  • Newsletters you follow
  • Top Twitter handles to follow
  • Best books

If you have any awesome resources, please let me know!

Top comments (9)

Collapse
 
jefftrusty profile image
Jeff Trusty

Maximilian Schwarzmüller has Angular and Typescript courses on Udemy that are highly regarded.

Collapse
 
avatarkaleb profile image
Kaleb M

Awesome! I just purchased the Angular one so I will see how it goes :). Thank you!

Collapse
 
jwp profile image
JWP

The Typescript site has very good docs.

Collapse
 
avatarkaleb profile image
Kaleb M

thank you very much !

Collapse
 
x777 profile image
YD

Stephen Grider new Angular course on Udemy. Good teacher.

Collapse
 
avatarkaleb profile image
Kaleb M

Thank you!

Collapse
 
anduser96 profile image
Andrei Gatej

Hello!
My favorite resource is Angular In Depth. You’ll definitely find some good learning material there.
You could also check out some yt channels: ng-conf, Angular Connect, ngHouston, AngularAir.

Collapse
 
avatarkaleb profile image
Kaleb M

I will check them out thank you !!

 
avatarkaleb profile image
Kaleb M

I'm def enjoying it so far. I'm up to 100/500 videos :D

typescript

11 Tips That Make You a Better Typescript Programmer

1 Think in {Set}

Type is an everyday concept to programmers, but it’s surprisingly difficult to define it succinctly. I find it helpful to use Set as a conceptual model instead.

#2 Understand declared type and narrowed type

One extremely powerful typescript feature is automatic type narrowing based on control flow. This means a variable has two types associated with it at any specific point of code location: a declaration type and a narrowed type.

#3 Use discriminated union instead of optional fields

...

Read the whole post now!