Codementor Events

Upgrade to Angular 7 in 2-minutes!

Published Oct 26, 2018Last updated Nov 01, 2018
Upgrade to Angular 7 in 2-minutes!

Angular 7 has many great changes, we’ll highlight the most important ones…

New Compiler

The new compiler provides an accelerated eight-phase compilation with the reduction of application sizes by approximately two. The new compiler is capable of advanced 8-phase rotating ahead-of-time compilation. Most applications can expect a massive reduction of 95-99% in bundle sizes.

Split of @angular/core

Given how large of a framework Angular has become you likely won’t need all of it’s libraries, modules or dependencies. Thus Angular has split  @angular/core into several (over 400) separate modules thereby reducing your applications bundle size.

Application Performance

Most developers were including the reflect-metadata polyfill in production builds. This has been removed by default.

CLI Prompts

In version 7 the cli will now prompt the user for configurable options when using  ng new or  ng add.

Virtual Scrolling

The virtual scrolling package provides helpers for directives that react to scroll events. Virtual Scrolling enables the loading and unloading of elements from the DOM based on what is visible or not.

Drag & Drop

The  @angular/cdk/drag-drop  module provides you with a way to easily and declaratively create drag-and-drop interfaces, with support for free dragging, sorting within a list, transferring items between lists, animations, touch devices, custom drag handles, previews, and placeholders, in addition helper methods for reordering lists (moveItemInArray) and transferring items between lists (transferArrayItem).

TypeScript 3.1

With Angular 7 the TypeScript dependency version has changed from 2.7 to 3.1.

Upgrading to Angular 7

You can use the  @angular/cli to upgrade for you automatically:

$ ng update @angular/core @angular/cli

Additionally, if you’re using  @angular/material:

$ ng update @angular/material

Upgrading all packages

You can quickly & easily upgrade all of your packages using the  npm-check-updates package:

$ npm install npm-check-updates
$ ncu --upgrade 
$ npm install

See Also:

See more at https://matthewdavis.io

Discover and read more posts from Matthew Davis
get started
post commentsBe the first to share your opinion
Show more replies