如何boostrap angularJS 2?

时间:2016-08-03 06:42:41

标签: angularjs angular

为了在Angular 1.XX中引导,我们有

ng-app ="myApp"

在Js文件中,我们写

var app = angular.module('myApp',[]);

我们如何在Angular 2中进行自举?

2 个答案:

答案 0 :(得分:2)

您可以使用Angular-CLI和以下命令。

npm install -g angular-cli    
ng new PROJECT_NAME
cd PROJECT_NAME
ng serve

答案 1 :(得分:0)

import {bootstrap} from "angular2/platform/browser";
import {Component} from "angular2/core";
@Component({
selector: 'my-app',
template: '<h1>My application</h1>'
})
class App{}
bootstrap(App);

这是引导应用程序的最简单方法。但好的做法是分离组件和引导程序文件。 查看这个小视频课程:https://egghead.io/lessons/angular-2-say-hello-world-to-angular-2?course=angular-2-fundamentals