- 创建ng项目
ng new 项目名
- 运行项目
ng serve --open
- 修改端口号
ng serve --port 1234
- 新建组件
ng g component 组件名
- 新建路由模块
ng g module router
- 创建服务
ng g service 名称
- 安装jquery
npm install jquery --save-dev
- 安装bootstrap
npm install bootstrap --save-dev
- 安装项目描述文件
npm install @types/jquery --save-dev
npm install @types/bootstrap --save-dev
- 在ng中引入jquery
import * as $ from 'jquery'
- 搭建node 服务器
npm init -y
- 安装node类型文件
npm install @types/node --save
- 在node中引入http模块
import * as http from 'http'
- 运行node服务
node hello.js
- 安装express框架
npm install express --save
- 安装express类型描述文件
npm install @types/express --save
- 反向代理运行项目
npm run start
- 编译sass
sass input.scss output.css
- 监视文件的改动并更新 CSS
sass --watch input.scss:output.css
- sass监听整个目录
sass --watch app/sass:public/stylesheets