Home » RxJS Latest Release Updates

RxJS Latest Release Updates

by Online Tutorials Library

RxJS Latest Release Updates

The latest version of RxJS is v6. It is version 6, which is released recently, and we are doing this tutorial in RxJS version 6. We know that RxJS is used to deal with reactive programming. It is common and most often used with Angular and ReactJS. Angular 6 loads rxjs6 by default.

Why update RxJS Version 6?

RxJS v6 is the major version change from RxJS 5.x to RxJS 6.x. The developers have done a lot of work to keep the hard breaking changes to a minimum as usual. In most cases, this allows application and library developers to update incrementally and use RxJS v6 without any modifications to their code. But, RxJS version 5 was handled differently in comparison to RxJS version 6. The code will break if you update your RxJS 5 to 6.

How to update RxJS v5 to RxJS v6 efficiently?

The backward-compatibility layer makes the update process easy and allows you to keep your apps working without failure while making changes in your code. This complete process is carried out in the following stages.

Here, we will see the different ways of handling the version update:

  • Update to the latest version of RxJS 5.5 and fix all issues caused by bug fixes.
  • Install RxJS v6 along with the backward-compatibility package, by using the command rxjs-compact.
  • If your app faces problems and the breaking changes are not covered by rxjs-compat, then update the affected code according to the instructions provided below.
  • Drop the compatibility layer to complete the update to RxJS v6. By doing this, it will significantly decrease the size of your apps.
  • Use the rxjs-tslint command to refactor the TypeScript code so that it doesn’t depend on rxjs-compat.
  • Remove and replace all the deprecated functionality before the release of RxJS v7.

If you want to update your RxJS v5 to RxJS v6 and don’t want to make the code changes, you can do it by installing the following package:

After installing this package, it will take care of providing backward compatibility, and your old code will work fine with RxJS version 6.

If you want to make changes in the code that it works fine with RxJS v6, you can do the following changes. The packages for operators, observables, and subject were restructured and so you have to change them how they have import for RxJS v6 in the following way:

Changes in Imports for operators

In RxJS v5, the operators and the following import statements are included as following:

In RxJS v6, these would be import as following:

Changes in Import of Methods to create Observables

In RxJS v5, when we work with Observables, we have to import methods as following:

In RxJS v6, this would be done as following:

Changes in Import of Observables

In RxJS v5, when we work with Observables, we have to import statements as following:

In RxJS v6, this would be done as following:

Changes in Import of Subject

In RxJS v5, we have to import subjects as following:

In RxJS v6, this would be done as follows:

This is how we use the operators in RxJS version 5. See the following example. In this example, we will find out the maximum value from a list.

Example:

This example is only compatible in RxJS version 5. If you run it in RxJS v6, it will give an error. See the following image:

RxJS Latest Release Updates

The pipe() method is available in RxJS v6 when the observable is created. It is added to RxJS from version 5.5. By using this method, you can work on multiple operators together in sequential order.

From RxJS version 5.5 onwards, we have to use pipe() method to execute the operator. See how the above example will be wrtten in rxJS v6:

Output:

RxJS Latest Release Updates

You can see that it has shown the correct output.

Operators that have been renamed

During the restructuring of the packages in RxJS v6, some of the operators are renamed because they were conflicting or matching with JavaScript keywords. The following list shows those operators:

Operator Renamed to
do() tap()
catch() catchError()
switch() switchAll()
finally() finalize()
throw() throwError()

Next TopicRxJS Operators

You may also like