我一直在尝试从角度2下载源代码,但我无法找到它。我查看了他们的github存储库,但无法识别正确的存储库。有人能指出一个或正在运行的CDN,以便我可以下载吗?
编辑:我需要在不使用Node.Js和NPM的情况下获取源代码。
答案 0 :(得分:11)
您可以使用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
等等。
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 { }
如果你不想使用打字稿,那么这里就是
答案 1 :(得分:0)
通常你会使用angular.io来下载使用NPM等的快速启动或CLI。以下是CDN的副本: