我在哪里可以找到Angular 2 CDN或源代码?

前端之家收集整理的这篇文章主要介绍了我在哪里可以找到Angular 2 CDN或源代码?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我一直在尝试从角度2下载源代码,但我无法找到它.我查看了他们的 github存储库,但无法识别正确的存储库.有人能指出一个或正在运行的CDN,以便我可以下载吗?

编辑:我需要在不使用Node.Js和NPM的情况下获取代码.

你可以使用unpkg.com:

https://unpkg.com/@angular/core@4.0.1/bundles/core.umd.js

https://unpkg.com/@angular/platform-browser-dynamic@4.0.1/bundles/platform-browser-dynamic.umd.js

等等.

这是jsFiddle Example

let { Component,NgModule } = ng.core;

@Component({
  selector: 'my-app',template: `
    <h1>Hello,{{ name }}</h1>
    <button (click)="increment()">Click {{ counter }}</button>
  `,})
class HomeComponent {
    counter = 0;
    name = 'Angular 2'

    increment() {
        this.counter++;
    }
}

const { BrowserModule } = ng.platformBrowser;

@NgModule({
  imports:      [ BrowserModule ],declarations: [ HomeComponent ],bootstrap:    [ HomeComponent ]
})
class AppModule { }

如果您不想使用打字稿,那么这里就是

Plunker Example Angular es5

原文链接:https://www.f2er.com/angularjs/142185.html

猜你在找的Angularjs相关文章