⚠️ You cannot write better than a best documented one. In this note, I just noted the source I think they're good for newbies like me. I noted this when I worked for a company, there are some terms/files/names,... which are not related to Angular itself.

TOC

MOOC and my notes

🍄 PART 1 — ‣

🍄 PART 2 — ‣

🍄 PART 3 — ‣

🍄 PART 4 — ‣

🔝 Back to top!

Resources

  1. Angular - Cheat Sheet
  2. I had to learn Angular 8 in 24 hours, here is how - DEV Community
  3. Difference Among Angular 8, 7, 6, 5, 4, 3, 2 — Breakdown, New Features, and Changes
  4. Official doc — Understanding Angular
  5. Official doc — Angular concepts
  6. https://angular-2-training-book.rangle.io/

🔝 Back to top!

Angular CLI cheatsheet

👉 Official CLI

// go the the folder where you're going to create 

// create a component (it'll create a folder also)
ng generate component <name> --selector "app-name"

🔝 Back to top!