TypeScript/preface.md
2015-12-12 10:21:44 +08:00

79 lines
4.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# TypeScript Handbook中文版
> 从前打心眼儿里讨厌编译成JavaScript的这类语言像CoffeeDart等。
> 但是在15年春节前后却爱上了TypeScript。
> 同时非常喜欢的框架DojoAngularjs也宣布使用TypeScript做新版本的开发。
> 那么TypeScript究竟为何物又有什么魅力呢
TypeScript是Microsoft公司注册商标。
TypeScript具有类型系统且是JavaScript的超集。
它可以编译成普通的JavaScript代码。
TypeScript支持任意浏览器任意环境任意系统并且是开源的。
TypeScript目前还在积极的开发完善之中不断地会有新的特性加入进来。
因此本手册也会紧随官方的每个commit不断地更新新的章节以及修改措词不妥之处。
如果你对TypeScript一见钟情可以订阅~~and star~~本手册及时了解ECMAScript 2015以及2016里新的原生特性并借助TypeScript提前掌握使用它们的方式
如果你对TypeScript的爱愈发浓烈可以与楼主一起边翻译边学习*[PRs Welcome!!!](https://github.com/zhongsp/TypeScript/pulls)*
在[相关链接](#相关链接)的末尾可以找到本手册的[Github地址](https://github.com/zhongsp/TypeScript)。
## 目录
* [基础类型](./doc/handbook/Basic Types.md)
* [枚举](./doc/handbook/Enums.md)
* [变量声明](./doc/handbook/Variable Declarations.md)
* [接口](./doc/handbook/Interfaces.md)
* [高级类型](./doc/handbook/Advanced Types.md)
* [](./doc/handbook/Classes.md)
* [命名空间和模块](./doc/handbook/Namespaces and Modules.md)
* [命名空间](./doc/handbook/Namespaces.md)
* [模块](./doc/handbook/Modules.md)
* [函数](./doc/handbook/Functions.md)
* [泛型](./doc/handbook/Generics.md)
* [混入](./doc/handbook/Mixins.md)
* [声明合并](./doc/handbook/Declaration Merging.md)
* [类型推论](./doc/handbook/Type Inference.md)
* [类型兼容性](./doc/handbook/Type Compatibility.md)
* [书写.d.ts文件](./doc/handbook/Writing Definition Files.md)
* [Iterators 和 Generators](./doc/handbook/Iterators and Generators.md)
* [Symbols](./doc/handbook/Symbols.md)
* [Decorators](./doc/handbook/Decorators.md)
* [tsconfig.json](./doc/handbook/tsconfig.json.md)
* [编译选项](/doc/handbook/Complier Options.md)
* [在MSBuild里使用编译选项](./doc/handbook/Compiler Options in MSBuild.md)
* [与其它构建工具整合](./doc/handbook/Integrating with Build Tools.md)
* [NPM包的类型](./doc/handbook/Typings for NPM Packages.md)
## 主要修改
* 2015-12-12 新增章节:[NPM包的类型](./doc/handbook/Typings for NPM Packages.md)
* 2015-12-12 新增章节:[与其它构建工具整合](./doc/handbook/Integrating with Build Tools.md)
* 2015-12-12 新增章节:[在MSBuild里使用编译选项](./doc/handbook/Compiler Options in MSBuild.md)
* 2015-12-11 新增章节:[高级类型](./doc/handbook/Advanced Types.md)
* 2015-12-06 新增章节:[编译选项](./doc/handbook/Complier Options.md)
* 2015-12-06 新增章节:[tsconfig.json](./doc/handbook/tsconfig.json.md)
* 2015-12-05 新增章节:[变量声明let和const](./doc/handbook/Variable Declarations.md)
* 2015-11-30 新增章节:[枚举](./doc/handbook/Enums.md)
* 2015-11-28 新增章节:[Decorators](./doc/handbook/Decorators.md)
* 2015-11-18 新增章节:[抽象类](./doc/handbook/Classes.md#抽象类)
* 2015-11-15 新增章节:[模块](./doc/handbook/Modules.md)
## 相关链接
* [TypeScript官网](http://typescriptlang.org)
* [TypeScript on Github](https://github.com/Microsoft/TypeScript)
* [TypeScript语言规范](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)
* [本手册中文版Github地址](https://github.com/zhongsp/TypeScript)
## Miscellaneous
* [tsconfig.json](https://github.com/zhongsp/TypeScript/tree/master/doc/tsconfig.json.md) (TypeScript 1.5)
* [let和const](https://github.com/zhongsp/TypeScript/tree/master/doc/let_and_const.md) (TypeScript 1.4)
* [元组类型 - Tuple Types](https://github.com/zhongsp/TypeScript/tree/master/doc/tuple_types.md) (TypeScript 1.3)
* [受保护的成员 - Protected members](https://github.com/zhongsp/TypeScript/tree/master/doc/protected.md) (TypeScript 1.3)