如何通过angular-cli搭建angular2框架

参考教程:https://scotch.io/tutorials/use-the-angular-cli-for-faster-angular-2-projects

如何在创建的时候引入scss: http://www.mamicode.com/info-detail-1776015.html

1、下载安装angular-cli

npm install -g angular-cli

2、启动新的应用程序(‘scotchy-scotch’为项目名)

ng new scotchy-scotch

3、进入项目 cd scotchy-scotch

执行 ng serve

4、在web访问 http://localhost:4200/

-------------------------------------------------------

5、新创建一个组件

ng generate component hello

类名:HelloComponent

5、生成新路由

ng generate route about (已过时)

ng g module my-module --routing









你可能感兴趣的:(如何通过angular-cli搭建angular2框架)