DEV Community

Cover image for What’s new in Angular 9?
Tomek Poniatowicz
Tomek Poniatowicz

Posted on • Updated on • Originally published at blog.graphqleditor.com

What’s new in Angular 9?

A guest blog post for GraphQL Editor blog by Marcin, Adam & Norbert from InfoTech


Awaited by everyone, the ninth version of Angular carries with it a lot of news and features. Primarily, Ivy became official compiler and functionalities brought into it, significantly improved performance and also streamline the process of debugging, testing and building web applications. In addition, changes were made to the entire framework.

Project Ivy has arrived

Angular is one of the best open-source frameworks that allows building web apps. Developed by Google, it has evolved over the years into versatile framework development, having all the necessary tools and resources to create web applications.

The biggest change introduced in Angular 9 is the replacement of the existing ViewEngine (VE) compiler with the Ivy compiler. In short, it is a tool that will be crucial for the further development of Angular and that has allowed eliminating several errors with large bundles and application performance resulting in a significant performance jump.

Angular is one of the major JavaScript frameworks

Source: undraw.co

In Angular 8 to activate Ivy you had to add the following lines in the tsconfig.json file:

"angularCompilerOptions": {  
  "enableIvy": true  
}
Enter fullscreen mode Exit fullscreen mode

In Angular 9 as Ivy became the default compiler this is no longer necessary. Ivy is radically different from anything we have seen in mainstream frameworks because it uses incremental DOM, and it upgraded since 8th versions and offers numerous advantages as:

  • Improved building,
  • Easier debugging,
  • Faster testing,
  • TypeScript 3.7 support,
  • Improved type checking,
  • IDE & language service improvements.

and our personal favorite which is ...

Improved bundle size

Ivy is reducing the size of JavaScript packages which is a great improvement for programmers trying to speed up their applications. Smartphones and other similar mobile devices make up about half of the websites' traffic worldwide. A large proportion of these mobile devices gain access to websites from locations with slow internet connections. Sadly this is still a major issue that needs to be considered while building an app. Rebuilding existing API to reduce the number of resources they need to download and increase application performance for mobile users could turn out to be quite costly and can pose an unexpected risk to their projects. Of course, there is always a GraphQL but since you need to convince your team first it takes time. Taking all that improved bundle size feature turns out really useful! If you would like to check in detail what has changed make sure to visit angular's official blog about the Angular 9 update.

Ivy offers improved bundle size

Source: angular.io

Update today

It’s the biggest actualization for about three years, so do not feel overwhelmed.
If you haven’t updated your projects yet, update.angular.io might come in handy! Certainly, working on a refreshed framework will be much more pleasant from now on. The mass of changes inevitably also heralds a lot of problems, but certainly, the next updates bring necessary corrections and patches. We wish you fruitful work!


Speed up your GraphQL API development

GraphQL Editor is a supportive tool for both advanced GraphQL users as well as those taking their first steps with GraphQL APIs. Our all-in-one development environment for GraphQL will help you build, manage & deploy your GraphQL API much faster thanks to dozens of built-in micro features.

GraphQL Editor

Top comments (0)