When trying to install the latest version of RxJS,
I used npm install rxjs
as explained in this documentation: https://github.com/reactivex/rxjs
But I got these warnings:
npm warn @angular/[email protected] requires a peer of rxjs@^5.5.0 but none is installed.
You must install peer dependencies yourself.
So it looks like RxJS is upgraded but not to the latest version.
In the output we see that there is a latest one which is RxJS 5.5.0
Is there any better npm command line to upgrade to the latest version ?
-g
flag will install this globally. – Raimund