标签:bsp 自带 style 项目 rip cnpm div angular node
1. 是什么 Angular是谷歌开发的一款开源的web前端框架, 基于TypeScript 2. 环境搭建 1. 安装nodejs 2. 安装npm (安装nodejs后会自带npm, 这里最好安装cnpm) 3. 使用npm(cnpm)安装Angular-cli 3. 创建/运行项目 ng new 项目名 (自动安装依赖) ng new 项目名 --skip-install (跳过依赖) ng serve --open (启动项目, 启动时需进入到项目的根目录中) 4. 创建模块 ng g module aaa/bbb (会在src/app/aaa下创建bbb模块) ng g module aaa/bbb --routing (创建带路由的模块) 5. 创建组件 ng g component aaa/bbb (会在src/app/aaa下创建bbb组件) 6. 创建服务 ng g service aaa/bbb (会在src/app/aaa下创建bbb服务)
标签:bsp 自带 style 项目 rip cnpm div angular node
原文地址:https://www.cnblogs.com/mpci/p/13225223.html