2015-11-18 20:39:06 +08:00
|
|
|
|
# TypeScript Handbook(中文版)
|
|
|
|
|
|
2015-12-05 20:04:21 +08:00
|
|
|
|
> 从前打心眼儿里讨厌编译成JavaScript的这类语言,像Coffee,Dart等。
|
|
|
|
|
> 但是在15年春节前后却爱上了TypeScript。
|
|
|
|
|
> 同时非常喜欢的框架Dojo,Angularjs也宣布使用TypeScript做新版本的开发。
|
|
|
|
|
> 那么TypeScript究竟为何物?又有什么魅力呢?
|
2015-11-18 20:39:06 +08:00
|
|
|
|
|
|
|
|
|
TypeScript是Microsoft公司注册商标。
|
|
|
|
|
|
2015-12-05 20:04:21 +08:00
|
|
|
|
TypeScript具有类型系统,且是JavaScript的超集。
|
|
|
|
|
它可以编译成普通的JavaScript代码。
|
|
|
|
|
TypeScript支持任意浏览器,任意环境,任意系统并且是开源的。
|
2015-11-18 20:39:06 +08:00
|
|
|
|
|
2015-12-05 20:04:21 +08:00
|
|
|
|
TypeScript目前还在积极的开发完善之中,不断地会有新的特性加入进来。
|
|
|
|
|
因此本手册也会紧随官方的每个commit,不断地更新新的章节以及修改措词不妥之处。
|
2015-11-18 20:39:06 +08:00
|
|
|
|
|
2015-12-05 20:04:21 +08:00
|
|
|
|
如果你对TypeScript一见钟情,可以订阅~~and star~~本手册,及时了解ECMAScript 2015以及2016里新的原生特性,并借助TypeScript提前掌握使用它们的方式!
|
|
|
|
|
如果你对TypeScript的爱愈发浓烈,可以与楼主一起边翻译边学习,*[PRs Welcome!!!](https://github.com/zhongsp/TypeScript/pulls)*
|
|
|
|
|
在[相关链接](#相关链接)的末尾可以找到本手册的[Github地址](https://github.com/zhongsp/TypeScript)。
|
2015-11-18 20:39:06 +08:00
|
|
|
|
|
|
|
|
|
|
2015-12-05 20:04:21 +08:00
|
|
|
|
## 目录
|
2015-11-18 20:39:06 +08:00
|
|
|
|
|
2016-04-10 09:19:32 +08:00
|
|
|
|
* [快速上手](./doc/handbook/quick-start/README.html)
|
2016-04-10 09:29:24 +08:00
|
|
|
|
* [React与webpack](./doc/handbook/quick-start/react-webpack.html)
|
2016-04-10 09:19:32 +08:00
|
|
|
|
* [ASP.NET 4](./doc/handbook/quick-start/asp-net.html)
|
2016-04-11 15:50:30 +08:00
|
|
|
|
* [ASP.NET Core](./doc/handbook/quick-start/asp-net-core.html)
|
2016-04-10 11:22:32 +08:00
|
|
|
|
* [Knockout.js](./doc/handbook/quick-start/knockout.html)
|
2016-04-10 09:19:32 +08:00
|
|
|
|
* [新增功能](./doc/release-notes/README.html)
|
2016-04-18 16:48:02 +08:00
|
|
|
|
* [TypeScript 1.8](./doc/release-notes/TypeScript 1.8.html)
|
|
|
|
|
* [TypeScript 1.7](./doc/release-notes/TypeScript 1.7.html)
|
|
|
|
|
* [TypeScript 1.6](./doc/release-notes/TypeScript 1.6.html)
|
|
|
|
|
* [TypeScript 1.5](./doc/release-notes/TypeScript 1.5.html)
|
2016-04-10 09:29:24 +08:00
|
|
|
|
* [TypeScript 1.4](./doc/release-notes/TypeScript 1.4.html)
|
|
|
|
|
* [TypeScript 1.3](./doc/release-notes/TypeScript 1.3.html)
|
2016-04-10 09:19:32 +08:00
|
|
|
|
* [TypeScript 1.1](./doc/release-notes/TypeScript 1.1.html)
|
2016-04-10 09:29:24 +08:00
|
|
|
|
* [手册](./doc/handbook/README.html)
|
2016-04-10 09:19:32 +08:00
|
|
|
|
* [基础类型](./doc/handbook/Basic Types.html)
|
|
|
|
|
* [变量声明](./doc/handbook/Variable Declarations.html)
|
|
|
|
|
* [接口](./doc/handbook/Interfaces.html)
|
|
|
|
|
* [类](./doc/handbook/Classes.html)
|
|
|
|
|
* [函数](./doc/handbook/Functions.html)
|
|
|
|
|
* [泛型](./doc/handbook/Generics.html)
|
2016-04-10 20:16:11 +08:00
|
|
|
|
* [枚举](./doc/handbook/Enums.html)
|
2016-04-10 09:19:32 +08:00
|
|
|
|
* [类型推论](./doc/handbook/Type Inference.html)
|
|
|
|
|
* [类型兼容性](./doc/handbook/Type Compatibility.html)
|
2016-04-10 20:16:11 +08:00
|
|
|
|
* [高级类型](./doc/handbook/Advanced Types.html)
|
2016-04-10 09:19:32 +08:00
|
|
|
|
* [Symbols](./doc/handbook/Symbols.html)
|
2016-04-10 20:16:11 +08:00
|
|
|
|
* [Iterators 和 Generators](./doc/handbook/Iterators and Generators.html)
|
|
|
|
|
* [模块](./doc/handbook/Modules.html)
|
|
|
|
|
* [命名空间](./doc/handbook/Namespaces.html)
|
|
|
|
|
* [命名空间和模块](./doc/handbook/Namespaces and Modules.html)
|
|
|
|
|
* [模块解析](./doc/handbook/Module Resolution.html)
|
|
|
|
|
* [声明合并](./doc/handbook/Declaration Merging.html)
|
|
|
|
|
* [书写.d.ts文件](./doc/handbook/Writing Definition Files.html)
|
2016-04-10 09:19:32 +08:00
|
|
|
|
* [JSX](./doc/handbook/JSX.html)
|
2016-04-10 20:16:11 +08:00
|
|
|
|
* [Decorators](./doc/handbook/Decorators.html)
|
|
|
|
|
* [混入](./doc/handbook/Mixins.html)
|
|
|
|
|
* [三斜线指令](./doc/handbook/Triple-Slash Directives.html)
|
2016-04-10 09:29:24 +08:00
|
|
|
|
* [工程配置](./doc/handbook/README.html)
|
2016-04-10 09:19:32 +08:00
|
|
|
|
* [tsconfig.json](./doc/handbook/tsconfig.json.html)
|
|
|
|
|
* [NPM包的类型](./doc/handbook/Typings for NPM Packages.html)
|
|
|
|
|
* [编译选项](./doc/handbook/Compiler Options.html)
|
|
|
|
|
* [在MSBuild里使用编译选项](./doc/handbook/Compiler Options in MSBuild.html)
|
|
|
|
|
* [与其它构建工具整合](./doc/handbook/Integrating with Build Tools.html)
|
2016-04-23 11:29:04 +08:00
|
|
|
|
* [使用TypeScript的每日构建版本](./doc/handbook/Nightly Builds.html)
|
2016-04-10 09:29:24 +08:00
|
|
|
|
* [Wiki](./doc/wiki/README.html)
|
2016-04-10 09:19:32 +08:00
|
|
|
|
* [TypeScript里的this](./doc/wiki/this-in-TypeScript.html)
|
|
|
|
|
* [编码规范](./doc/wiki/coding_guidelines.html)
|
|
|
|
|
* [常见编译错误](./doc/wiki/Common Errors.html)
|
|
|
|
|
* [支持TypeScript的编辑器](./doc/wiki/TypeScript-Editor-Support.html)
|
|
|
|
|
* [结合ASP.NET v5使用TypeScript](./doc/wiki/Using-TypeScript-With-ASP.NET-5.html)
|
|
|
|
|
* [架构概述](./doc/wiki/Architectural-Overview.html)
|
|
|
|
|
* [发展路线图](./doc/wiki/Roadmap.html)
|
2015-11-18 20:39:06 +08:00
|
|
|
|
|
|
|
|
|
|
2016-04-01 17:26:53 +08:00
|
|
|
|
## 主要修改 (Latest 10 updates)
|
2016-01-23 16:10:15 +08:00
|
|
|
|
|
2016-04-23 11:29:04 +08:00
|
|
|
|
* 2016-04-23 新增章节:[使用TypeScript的每日构建版本](./doc/handbook/Nightly Builds.html)
|
2016-04-18 16:48:02 +08:00
|
|
|
|
* 2016-04-18 新增章节:[新增功能](./doc/release-notes/README.html)
|
2016-04-11 15:50:30 +08:00
|
|
|
|
* 2016-04-10 新增章节:快速上手:[ASP.NET Core](./doc/handbook/quick-start/asp-net-core.html)
|
2016-04-10 20:16:11 +08:00
|
|
|
|
* 2016-04-10 新增章节:[三斜线指令](./doc/handbook/Triple-Slash Directives.html)
|
2016-04-10 11:22:32 +08:00
|
|
|
|
* 2016-04-10 新增章节:快速上手:[Knockout.js](./doc/handbook/quick-start/knockout.html)
|
|
|
|
|
* 2016-04-10 新增章节:快速上手:[新增功能](./doc/release-notes/TypeScript 1.4.html)
|
2016-04-02 11:26:22 +08:00
|
|
|
|
* 2016-04-02 新增章节:[模块解析](./doc/handbook/Module Resolution.html)
|
2016-04-01 17:53:15 +08:00
|
|
|
|
* 2016-04-01 新增特性:[多态的`this`类型](./doc/handbook/Advanced Types.html)
|
|
|
|
|
* 2016-04-01 新增特性:[字符串字面量类型](./doc/handbook/Advanced Types.html)
|
2016-04-10 11:22:32 +08:00
|
|
|
|
* 2016-02-27 新增章节:快速上手:[React和webpack](./doc/handbook/quick-start/react-webpack.html)
|
2015-11-18 20:39:06 +08:00
|
|
|
|
|
|
|
|
|
|
2015-12-05 20:04:21 +08:00
|
|
|
|
## 相关链接
|
|
|
|
|
|
|
|
|
|
* [TypeScript官网](http://typescriptlang.org)
|
|
|
|
|
* [TypeScript on Github](https://github.com/Microsoft/TypeScript)
|
2016-04-10 20:16:11 +08:00
|
|
|
|
* [TypeScript语言规范](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.html)
|
2015-12-05 20:04:21 +08:00
|
|
|
|
* [本手册中文版Github地址](https://github.com/zhongsp/TypeScript)
|