From React to Angular

December 12, 2020 - 10 min read (1857 words)

Around mid-October or so, I was moved to a different team that has been undertaking a big back-end project. While I'd previously been focused on learning Angular, I've shifted in the past two months to focusing on C# and ASP.NET Core, as those are the language and framework we use to build our APIs.

I thought that it might be useful to write a few blog posts aimed at Lambda School students or alums (or anyone else, really) who are, whether by choice or necessity, learning Angular and C# after first learning React and Node/Express. This post will share some general tips, suggestions, and resources for Angular; a future one will do the same for C# and ASP.NET Core.

Unless its stack has changed in the past few months, Lambda School teaches students to build front-end applications using React and back-end APIs using Node.js and the Express framework. Without going into a full review of Lambda School, I think a strength of the program is that students are constantly building projects, both independently (pretty much daily) and on teams, as part of Build Weeks and Labs. To that end, React makes sense as the offered front-end library, given its popularity and relative ease of adoption. While I've tinkered around with Vue (growing in popularity) and Svelte (super lightweight), React and Angular remain the two most popular libraries/frameworks for front-end development at the time of this post.

I'll start with some differences between the two, before sharing some resources and general tips for transitioning from React to Angular.

Differences between React and Angular

Library vs Framework

It's fair to say that Angular has a much steeper learning curve than React does. Part of it this is due to how flexible React is. React is a JavaScript library, whereas Angular is a full-fledged, opinionated framework. React allows for more different approaches, especially in component and application organization, while Angular is stricter in terms of code organization and architecture, ways of doing things, and best practices. In my opinion, there are just more concepts to learn when learning Angular.

There are benefits and considerations to both React and Angular, of course. For a simple application, whether a personal project or a small team project for a Build Week or a hackathon, React is much easier to get off the ground and running. For an enterprise application involving coordinating many teams and engineers, there's value to the structure and organization that Angular provides. This isn't to say that enterprises don't use React, but I imagine that those that do must require specific coding standards and best practices around React to ensure that all developers are on the same page.

Functional Programming vs Object-Oriented Programming

Another key difference between React and Angular is that React takes a functional programming approach to the front-end, whereas Angular takes an object-oriented programming approach. This may be a little high-level, and I won't go into the weeds on this, but the main takeaway here is that learning Angular requires learning object-oriented programming more in-depth. While the Lambda curriculum covers general object-oriented programming principles with Python, especially around inheritance, solidifying understanding of OOP principles is important when working with Angular. It's important to have a good grasp of the following:

  • What the constructor does
  • Interfaces
  • Dependency injection

While we covered constructors in Lambda, there were definitely some OOP concepts that didn't quite click for me until working with Angular (and C#).

TypeScript

One additional difference between React and Angular is TypeScript. While TypeScript's optional with React, it's a primary language for Angular application development. Learning TypeScript can seem daunting, but since it's a superset of JavaScript, it's helpful to think of it as JavaScript with additional optional features.

(One key point here... Angular is NOT AngularJS. The simple way to think about it is that AngularJS was Angular 1.0, while Angular is Angular 2.0 and onward. My recommendation is to focus on Angular, as I believe that AngularJS is primarily a legacy framework at this point.)

Resources

TypeScript

TypeScript can get pretty complex, but it's not necessary to learn all the intricacies right away. As in all things, the fundamentals are the most important. It's fine to focus on the basics and only tackle more complex concepts when needed.

I found Execute Program really useful in getting started with TypeScript and learning the syntax.

Additionally, the TypeScript docs are pretty terrific, and worth exploring:

One additional thought about learning TypeScript for Angular: there are so many resources out there, so I'd focus just on those that describe how to work with TypeScript in Angular. Likewise, if learning TypeScript to use with React, I'd focus on tutorials and resources for that overlap specifically.

Angular

The Angular docs are pretty great, and going through some of the basic tutorials there are useful. I'd recommend spending some time reading through the Angular docs.

Basic tutorials on the Angular site:

I found both of the following free courses very helpful. The Angular University one is good for getting a quick introduction to some of the general concepts. The Thinkster course goes more in-depth and involves interactive exercises, and I highly recommend it.

Free courses:

In addition to these courses, I'm a big fan of Pluralsight, which I have access to via a work license. Pluralsight has a long list of Angular tutorials and conference talks, and I found the specificity of some of the tutorials and talks very helpful when digging into particular Angular topics. I'll likely write a separate post with my recommendations for an Angular "curriculum" on Pluralsight. While Pluralsight has a monthly fee, they often have free trial weekends or weeks.

Finally, StackBlitz is great for experimenting with Angular (and other frameworks) in the browser. It's great to experimenting with an Angular concept without spinning up a whole new project. I've used it for TypeScript and RxJS as well.

Some Key Angular Concepts

Angular does a lot of things differently than React, from routing to making HTTP calls to how it iterates over arrays. I won't focus too much on the specifics of these differences here, as I think they're just different ways of approaching things and can be best learned from one of the tutorials above.

I recommend paying careful attention to the following concepts when learning Angular, as they're not concepts encountered in React:

  • Components, services, and modules. Like React, Angular uses components. However, Angular architecture organizes components into logical modules, and components use services to provide specific functionality. In other words, Angular is pretty particular about where different logic is handled, which isn't something that React enforces. Learning how components and services interact is pretty important, as is when to group components into separate modules.
  • Decorators. Decorators are common in other programming languages and are a TypeScript feature which may make their way into JavaScript at some point. In Angular, they're recognizable via the @ symbol (for example, @Component, @Input, among many others). They're a special kind of declaration that can be attached to classes, methods, properties, or parameters to add additional functionality. Angular uses decorators quite a bit, but I don't know that it's extremely necessary to know what's happening under the hood with these when first starting out.
  • Routing. Angular Router handles routing differently than React and React Router do, defining a Route object where all the URL paths are mapped to their associated components. I found routing in Angular to be fairly straightforward and intuitive to implement, and while it's different than in React, I don't think it involves any large conceptual leaps. Vue takes a similar approach to routing, so familiarity with Vue would help with this area.
  • Directives. Angular directives comprise components, structural directives, and attribute directives, with the latter two being attributes added directly to HTML elements to change the structure of or appearance of the DOM. They're a concept that don't exist in React, but I found them to be fairly straightforward and logical, especially when referencing documentation for use cases. Again, Vue has a similar directives, so familiarity with Vue helps here.
  • Dependency injection. Dependency injection is a design pattern in object-oriented programming where classes request dependencies from external sources rather than new-ing them up. They're important to keep code loosely coupled, which makes code more maintainable, testable, and less prone to bugs. This is a key concept when understanding Angular services, both in creating them and in referencing them in constructors. It comes up when learning ASP.NET Core as well.
  • RxJS. RxJS is a library that Angular uses to work with data streams via something called Observables. It has a pretty steep learning curve itself and borderlines on being an advanced concept in Angular, so I'll dedicate a separate post to it. As a third-party library, it can also be used in React and other frameworks, so it's not Angular-specific. That said, it's a foundational part of Angular and promotes a concept called reactive programming. Reactive programming differs from the traditional approach of imperative programming, and is probably my favorite feature of Angular. Basically, rather than waiting for data before deciding what to do, reactive programming "reacts" to changes in data.

General Tips and Suggestions when transitioning from React to Angular

I'll wrap this up for now with some some general tips and suggestions. While these are useful for learning Angular, they pertain to learning other frameworks and technologies as well.

  • When learning TypeScript, focus on the basics and fundamentals, as they'll be used far more often than advanced and complex concepts.
  • When seeking out resources on concepts tangential to Angular (TypeScript, object-oriented programming, RxJS, etc.), focus on how those topics are implemented specifically in Angular. In other words, focus on when and where TypeScript is used in Angular, which object-oriented programming concepts are key in Angular, and how RxJS is used in Angular. It can be easy to get lost in all the resources, particularly more general ones, so specificity is helpful.
  • When learning a new concept, I find it helpful to search within my company's codebase to see its implementation in practice.
  • When in doubt, read the docs.
  • Have fun! When I first started working with Angular, it felt like a lot of boilerplate, or just a lot of magic happening under the hood that I couldn't understand, and I found myself missing the simplicity and flexibility of React. As certain concepts clicked into place though, I started enjoying working with Angular more and more. There's definite a lot to appreciate about the logic, organization, architecture, and approach of Angular.

Hopefully the above is helpful for anyone looking to make the transition from React to Angular. As mentioned, I'll write future posts sharing resources on RxJS specifically, as well as on transitioning from Node/Express to C# and ASP.NET Core. Feel free to reach out with any feedback, comments, and suggestions!

© 2022, Built with