RXJS 6 compatibility
See original GitHub issueVersion info
Angular: 6.0.0-rc.0
Firebase: 4.12.0
AngularFire: 5.0.0-rc.6
Other (e.g. Ionic/Cordova, Node, browser, operating system):
"rxjs": "6.0.0-beta.3",
"rxjs-compat": "6.0.0-beta.1",
How to reproduce these conditions
ng serve
fails with following error
ERROR in ./node_modules/angularfire2/database/observable/fromRef.js
Module not found: Error: Can't resolve 'rxjs/operator/observeOn' in 'C:\Development\profile-web\node_modules\angularfire2\database\observable'
in the fromRef.js
file needs to be fixed import
import { observeOn } from 'rxjs/operator/observeOn';
to
import { observeOn } from 'rxjs/operators/observeOn';
Issue Analytics
- State:
- Created 5 years ago
- Reactions:13
- Comments:18 (5 by maintainers)
Top Results From Across the Web
RxJS 6: What's new and what has changed? - Auth0
The RxJS team has made a solid effort on making this release as backward compatible as possible. However, in an effort to reduce...
Read more >RxJS 6.x to 7.x Detailed Change List
This document contains a detailed list of changes between RxJS 6.x and RxJS 7.x, presented in the order they can be found when...
Read more >RxJS 6 - What Changed? - Academind
RxJS 6 is mostly used in Angular apps, and starting with Angular 6, it's a mandatory dependency there. Learn more about the Angular...
Read more >RxJS 6 Release Improves Performance and Modularity - InfoQ
The compatibility shim makes it possible to upgrade to version 6 with no code changes, but developers should then update their source code...
Read more >Angular 6 Upgrade: Migrating to RxJS 6 - Techiediaries
First, you need to make sure that you are using the latest version (RxJS 5.5) in your project. · Next, you need to...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
We should have a next release soon.
update to RxJS 6 soon!