Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

@reactivex/rxjs and rxjs NPM packages for RxJS 5

Tags:

npm

rxjs

rxjs5

In @reactivex/rxjs package it is suggested that scoped package should be used:

npm install @reactivex/rxjs

And UMD module is available through npmcdn as

https://npmcdn.com/@reactivex/[email protected]/dist/global/Rx.umd.js

However, unscoped rxjs package has got published 5.x versions too but README also suggests

npm install @reactivex/rxjs

And UMD module is available as

https://npmcdn.com/[email protected]/bundles/Rx.umd.js

Both refer to git+ssh://[email protected]/ReactiveX/RxJS.git repository, but package contents look totally different.

Why do their trees differ so much? What is the practical difference between those two? Is there a reason why one of them should be favoured at this moment?

like image 725
Estus Flask Avatar asked Apr 30 '16 19:04

Estus Flask


1 Answers

doubled check now and they appears to be the same file

$ wget https://npmcdn.com/[email protected]/bundles/Rx.umd.js -q -O rxjs
$ wget https://npmcdn.com/@reactivex/[email protected]/dist/global/Rx.umd.js -q -O reativx-rxjs
$ diff rxjs reativx-rxjs 
$ 
like image 64
mh-cbon Avatar answered Sep 22 '22 02:09

mh-cbon