本文整理 Angular CLI的常用命令
我们在使用Angular2项目时,直接使用官网提供的基础配置文件,在NodeJS下面就可以生成一个新的ng2项目,但是这样非常不便利,每次都要新建目录,复制配置文件,使用Node命令安装支持库,最后才是写代码。Angular-cli就是用来简化这一操作的,而且官方配置文件不包含打包命令,对于新手来说,对System打包和webpack打包都不熟悉的情况下,使用Angular-cli能够非常方便的生存一样ng2项目,打包ng2项目,集中在编写项目代码上,省略繁琐的配置过程。
1、 安装Angular Cli
npm install -g angular-cli
-g命令表示安装在全局。
2、使用Angular cli初始化ng2项目
ng new my-ng2-app
这样就创建一个名为my-ng2-app的项目
如果在要把现有目录转成ng2项目,只需要运行下面命令:
mkdir ng2-test
cd ng2-test
ng init
3、运行ng项目
ng serve
或者
npm start
两个都可以,默认端口为:4200
http://localhost:4200
4、修改默认端口 -> 修改为(3000)
ng serve -p 3000
5、打包发布
ng build
目录中就会出现dist文件夹,可以看到里面就是打包后的文件,包含一些html、js等文件,上传服务器就可以运行代码了。
6、修改文件
修改目录中的src文件夹,里面就是TypeScript书写的组件,服务,管道,指令等文件。
二、使用ng g / ng generate 命令创建文件
ng generate component my-new-component ng g component my-new-component # using the alias # components support relative path generation # if in the directory src/app/feature/ and you run ng g component new-cmp # your component will be generated in src/app/feature/new-cmp # but if you were to run ng g component ../newer-cmp # your component will be generated in src/app/newer-cmp # if in the directory src/app you can also run ng g component feature/new-cmp # and your component will be generated in src/app/feature/new-cmp
You can find all possible blueprints in the table below:
| Scaffold | Usage |
|---|---|
| Component | ng g component my-new-component |
| Directive | ng g directive my-new-directive |
| Pipe | ng g pipe my-new-pipe |
| Service | ng g service my-new-service |
| Class | ng g class my-new-class |
| Guard | ng g guard my-new-guard |
| Interface | ng g interface my-new-interface |
| Enum | ng g enum my-new-enum |
| Module | ng g module my-module |
angular-cli will add reference to components, directives and pipes automatically in the app.module.ts. If you need to add this references to another custom module, follow this steps:
ng g module new-moduleto create a new module- call
ng g component new-module/new-component
This should add the new component, directive or pipe reference to the new-module you've created.
更多:
本文详细介绍AngularCLI的安装及使用方法,包括项目初始化、运行、打包等常见命令,并介绍如何使用ng generate命令快速创建组件、服务等文件。
6132

被折叠的 条评论
为什么被折叠?



