### 创建项目
```
npm init -y
```
修改package.json
```
{
"name": "ts_demo1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "tsc && concurrently \"npm run tsc:w\" \"npm run lite\"",
"lite": "lite-server",
"tsc": "tsc",
"tsc:w": "tsc -w"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"lite-server": "^2.2.0",
"concurrently": "^2.0.0"
}
}
```
### 新建typescript编译器配置文件
tsconfig.json
```
{
"compilerOptions": {
"target": "es5",
"module": "amd",
"sourceMap": true
},
"exclude": [
"node_modules",
"typings/main",
"typings/main.d.ts"
]
}
```
```
tsconfig.json文件各项说明如下:
"compilerOptions"——编译器选项;
"target"——编译目标,如这里编译为es5代码;
"module"——处理独立文件时的模块加载方式;
"sourceMap"——是否创建map文件以帮助调试;
"exclude"——编译器会编译TypeScript文件(.ts或.tsx),通过排除设置里的TypeScript文件不会被编译
```
### 测试
index.ts
```
class Person{
name: string;
constructor(name: string){
this.name = name;
}
say(){
console.log(this.name + " say ....");
}
}
let person = new Person("sn");
console.log("person:" + person.say());
```
index.html
```
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<script src="demo1.js"></script>
</body>
</html>
```
```
npm start
自动打开浏览器
```
### 使用调试
```
点击绿色小三角(或F5)就开始调试
```
launch.json
```
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}\\index.js",
"outFiles": [
"${workspaceFolder}/**/*.js"
],
"sourceMaps": true
}
]
}
```
- 语言
- Javascript
- 简介
- 常量变量
- var
- let
- const
- 解构赋值
- 数据类型
- 简单数据类型
- Undefined
- Null
- Boolean
- Number
- String
- 引用数据类型
- Object
- Array
- Json
- 闭包
- 闭包中的变量
- 函数
- 函数参数
- arguments
- rest
- 传值方式
- 调用方式
- 函数调用
- 方法调用
- 构造函数
- 上下文
- 箭头函数
- 异步
- promise
- async/await
- 面向对象
- 简介
- 构造函数
- 创建对象
- 工厂模式
- 构造函数模式
- 原型模式
- 构造函数/原型组合模式
- 继承
- 什么是继承
- 怎么继承
- 原型链继承
- 拷贝继承
- 原型式继承
- 借用构造函数
- 对象扩展
- Object.assign
- 类
- 定义
- 类的继承
- 模块
- 定义模块
- 导入模块
- 简介
- 垃圾回收
- Typescript
- 简介
- 搭建环境
- 数据类型
- boolean
- number
- string
- array
- enum
- any
- void
- 类型推测
- 联合类型
- 类
- 定义
- 继承
- 封装
- static
- 函数
- 定义
- 参数
- 接口
- 属性类型接口
- 函数类型接口
- 数组类型接口
- 类类型接口
- 泛型
- 泛型函数
- 泛型类
- 模块
- 定义
- Node.js
- 简介
- IO优势
- Node与V8
- 内部机制
- 多线程
- 并发支持
- libuv
- 创建项目
- 安装Node
- 创建项目
- 全局对象
- console
- path
- process
- I/O
- 系统信息
- 命令行
- Buffer
- 模块
- 创建模块
- 导入模块
- 系统模块
- fs
- stat
- fstat
- 读
- 写
- http
- 服务端
- 客户端
- stream
- 4种基本类型
- event
- 事件监听
- 继承
- child_process
- spawn
- fork
- path
- url
- 三方模块
- socket.io
- 安装
- 例子
- server
- client
- redis
- 安装
- 编码
- 数据类型
- 键值对
- 散列表
- 列表
- 集合
- 发布订阅
- mongodb
- express
- mssql
- pm2
- qrcode
- ua-parse-js
- cpr
- js-cookie
- whatwg-fetch
- ora
- shelljs
- log4js
- Dart
- 框架
- Vue
- 简介
- 基础
- 声明式渲染
- Vue实例
- 模板语法
- 插值
- 文本
- 原始Html
- 特性
- js表达式
- 指令