Tutorial

Angular 6: Upgrading & Summary of New Features

Published on May 3, 2018
Default avatar

By Alligator.io

Angular 6: Upgrading & Summary of New Features

While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.

Angular 6, was just released, and while the amount of new features is minimal, a lot has changed under the hood in terms of tooling. The new tooling additions are especially great for facilitating upgrading and adding new libraries to your apps. In this post we’ll breakdown what’s new with Angular 6 and also go over how to upgrade an app over to this new version.

Additions & New Features

Below you’ll find a summary of the major new additions. Note that this list is not exhaustive, and you can refer to the links in the conclusion for more details.

ng update & ng add

The Angular CLI gets two major new commands: update and add.

With ng update, updating an Angular app is now just a command away. 3rd-party libraries can also hook into the new command, thanks to schematics, to make it easy to update those libraries as well. Under the hood the command will work with the project’s package.json file and use the project’s package manager (npm or Yarn) as well as apply code transforms where needed to update the code or configuration files where necessary.

Similar to ng update, the new ng add command allows to add and configure new libraries into a project with a simple command. For example, installing and setting up Angular Material used to require quite a few steps, but now it can all be done simply with one command:

$ ng add @angular/material

Again with ng add, 3rd-party libraries can create their own schematics for it.

Other CLI changes

Angular projects that use the CLI historically had a configuration file called .angular-cli.json. With version 6 of the CLI, this file is now renamed to angular.json and its structure also changes.

ng new now generates a workspace with a default application. Additional apps can be added to a workspace, making it possible to have multiple apps under one project. Libraries are now also a 1st-class citizen and can be added to a workspace and generated using the CLI:

$ ng g library ng-fancy-lib

Angular Elements

With Angular 6 we get the initial release of Angular Elements, a project that will make it easy to develop components that can be embedded as custom elements into other Angular projects and eventually with other frameworks or even with just vanilla JavaScript.

We’ll look at Angular Elements in a different post, and in the meantime you can watch this great introduction by Jeff Delaney of Angular Firebase.

TypeScript 2.7 & RxJS 6

Angular 6 now depends on TypeScript 2.7 and RxJS 6.

RxJS 6 has new and simpler import paths and gets away with chainable operators in favor of pipeable operators. This makes the library as a whole more tree-shakable and will result in smaller bundles. RxJS 6 contains some breaking changes, but a new package, rxjs-compat, can be installed alongside RxJS 6 to provide a compatibility layer while upgrading your code to the new syntax.

Here’s a sample import that demonstrates the main new import paths:

// creation and utility methods
import { Observable, Subject, pipe } from 'rxjs';
// operators all come from `rxjs/operators`
import { map, takeUntil, tap } from 'rxjs/operators';

As you can see, it’s much easier to remember where to import things from! And as for chained operators versus piped operators, here’s a simple example of the difference:

// before
myObs
  .do(console.log)
  .map(x => x * 2)
  .subscribe(x => {
    console.log('Value is', x);
  });

// after
myObs
  .pipe(
    tap(console.log),
    map(x => x * 2)
  )
  .subscribe(x => {
    console.log('Value is', x);
  });

Notice how the do operator has been renamed to tap, because do is a reserved keyword in JavaScript.

Ivy renderer

A rewrite of the renderer, code-named Ivy, has also been getting a lot of attention lately. The new renderer should be significantly smaller, which will allow for a smaller final app’s bundle size. A stable version is not available just yet, but it will be made available as an opt-in replacement when the API is complete and stable.

Upgrading

The Angular team has put together a tool, the Angular Update Guide, that makes it easy to migrate your Angular installation to the latest version. For the most part, upgrading will be a matter of following that guide.

Still though, you’ll find below a summarized breakdown of the steps needed to upgrade an Angular 5.2 app that also uses Angular Material over to Angular 6.

Before getting started, make sure your app is already using the new HttpClient module instead of the legacy Http module.

If your app depends on packages that have a peerDependency to Angular 5 you’ll have to wait until the package is updated to support Angular 6.

Updating the CLI

Update to v6 of the Angular CLI both globally and locally to the project:

# updating using npm
$ npm i -g @angular/cli
$ npm i @angular/cli

# using Yarn
$ yarn global add @angular/cli
$ yarn add @angular/cli

Running ng update

You can now run ng update for the CLI, Angular core and Angular Material.

First, updating the CLI will convert the configuration file to the new format (angular.json) and update various project configs:

$ ng update @angular/cli

Next, run ng update for the Angular core packages:

$ ng update @angular/core

And then you can also run ng update to update Angular Material and RxJS:

$ ng update @angular/material
$ ng update rxjs

Running ng update without arguments will give you a list of packages that can be updated with the command.

Upgrading RxJS

For RxJS, the syntax for the import paths needs to be updated, and operators need to be piped together instead of chained together. Normally that would mean that you have to update your code everywhere RxJS imports and operators are used, but thankfully there’s a package that takes care of most of the heavy lifting: rxjs-tslint.

You can install the package globally:

$ npm i -g rxjs-tslint

# or, using Yarn
$ yarn global add rxjs-tslint

And then you can run the rxjs-5-to-6-migrate command pointing to your app’s tsconfig.app.json file, which is found is a project’s src folder:

$ rxjs-5-to-6-migrate -p src/tsconfig.app.json

You may have to run the command a few times. On a non-trivial codebase a lot of changes will be made, so you’ll want to have a look at the git diffs to make sure that everything looks good.

Once rxjs-tslint has done its work, you’ll want to run your tests and exercise the app fully to fix any anything that comes up. For example, some syntax changes for RxJS 6 that may have been missed by the tool, or new type errors brought up by TypeScript 2.7.

After everything looks good, you’ll want to remove the rxjs-compat package from your project (leaving it would add unnecessary bloat to your app bundle):

$ npm uninstall rxjs-compat

# or, using Yarn
$ yarn remove rxjs-compat

Further Reading

You may want to dig deeper into the latest additions and migration steps. Here are a few of the key resources to help you with that:

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about us


About the authors
Default avatar
Alligator.io

author

Still looking for an answer?

Ask a questionSearch for more help

Was this helpful?
 
Leave a comment


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Join the Tech Talk
Success! Thank you! Please check your email for further details.

Please complete your information!

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel