我在哪里可以找到Angular 2 RC3捆绑包?

时间:2016-06-24 12:14:16

标签: angular

由于我在这里钻研的各种原因,我暂时无法建立自己的Angular 2 RC3捆绑包。因此,我在哪里可以找到一个编译的包来玩。看起来他们一旦开始发布RC就停止创建捆绑包。

1 个答案:

答案 0 :(得分:4)

我遇到this decent plunker演示了新的Angular 2路由器和updated it以支持RC3。 “Heroes”应用程序本身对RC1到RC3升级感觉不太舒服。但它给了一个很好的游乐场。

它使用npmcdn作为CDN,可以是easily fixed to log UMD bundle URLS that are requested

https://npmcdn.com/rxjs@5.0.0-beta.6/
https://npmcdn.com/angular2-in-memory-web-api/index.js
https://npmcdn.com/@angular/common@2.0.0-rc.3/bundles/common.umd.js
https://npmcdn.com/@angular/compiler@2.0.0-rc.3/bundles/compiler.umd.js
https://npmcdn.com/@angular/core@2.0.0-rc.3/bundles/core.umd.js
https://npmcdn.com/@angular/http@2.0.0-rc.3/bundles/http.umd.js
https://npmcdn.com/@angular/platform-browser@2.0.0-rc.3/bundles/platform-browser.umd.js
https://npmcdn.com/@angular/platform-browser-dynamic@2.0.0-rc.3/bundles/platform-browser-dynamic.umd.js
https://npmcdn.com/@angular/router-deprecated@2.0.0-rc.3/bundles/router-deprecated.umd.js
https://npmcdn.com/@angular/upgrade@2.0.0-rc.3/bundles/upgrade.umd.js
https://npmcdn.com/@angular/router@3.0.0-alpha.6/index.js

RxJS UMD没有直接链接,但可以从索引列表中找到:

https://npmcdn.com/rxjs@5.0.0-beta.6/bundles/Rx.umd.js
相关问题