I thought of writing this post, to create a roadmap documentation to learn Angular in my company. Then, I asked myself, why not share with all developers? ๐ฆ
So, getting to the point, what steps do we must follow to be a Angular Developer?
๐พ Getting started with JavaScript
If you are reading this post, I assume you already have knowledge of Html and css, so I'm going to skip those directly to javascript. To be a Angular Developer, you have to first have some solid foundation of Javascript, to learn how things work. Let me share with you some resources that you can use to increase your Javascript developmemnt skills:
- JavaScript Accelerated Training - Notting better to start with reviewing the basics of javascript with this course given by Maximilian
- JavaScript - Understanding the Weird Parts - Grasp how Javascript works and it's fundamental concepts in this Udemy Course
JavaScript Algorithms and Data Structures - In Freecodecamp you can find for free this course that you can learn by doing examples and in the end you can get a certification
๐ฉโ๐ป Move from JavaScript to Typescript
TypeScript is a superset of JavaScript which primarily provides optional static typing, classes and interfaces. One of the big benefits is to enable IDEs to provide a richer environment for spotting common errors as you type the code. Since Angular 2, this is a must to learn.
- Introduction to TypeScript - This tutorial teaches you TypeScript through 21 interactive screencasts, it's free and you can find it on Scrimba
- Best practices in TypeScript - This article will not discuss the good and bad sides of Typescript but some best practices.
TypeScript Official Documentation - Last but not least you can always find official documentation
๐ฅ And finally, Angular!
Now that youโre experienced in JavaScript and Typescript let's skip to Angular. Angular as a framework is a great choice because itโs quite easy to learn and itโs improving each day.
- Angular Course on Udemy - This course course given by Maximilian Schwarzmรผller teaches you Angular in detail and is always up to date with the latest versions.
-
Official Angular Documentation - The Angular docs website contains all the information youโd need to be a developer at Angular development.
๐ In addition to Angular
Angular already comes with some features that you should also learn:
- Create end-to-end tests to make sure that your application works as expected all the time by simulating interactions using a real browser - cypress.io is one what that examples.
Learn how you can unit test each part of your code using libraries like Jest.
๐ Angular Best Practices
- Best practices for a clean and performant Angular application - This article from Freecodecamp outlines the practices we use in our application and is related to Angular.
Angular collection of directives - In this github repository you can find some tips that you can use in your project.
๐ Get inspired!
- Made with angular - This website shows some cool examples built with Angular.
Angular Expo - Angular Expo is a beautiful showcase of websites, applications and experiments using the Angular JavaScript framework.
Follow the news
Angular is always evolving and as developers we should always be in touch with the latest updates. For that I recommend to follow the Official Angular Blog.
Until next time! See you around! ๐
Top comments (3)
Thanks for sharing!
For more in-depth stuff, Iโd recommend checking out inDepth.dev.
Awesome Monica!
Thank you Joost!๐