从前打心眼儿里讨厌编译成JavaScript的这类语言,像Coffee,Dart等。 但是在15年春节前后却爱上了TypeScript。 同时非常喜欢的框架Dojo,Angularjs也宣布使用TypeScript做新版本的开发。 那么TypeScript究竟为何物?又有什么魅力呢?
TypeScript是Microsoft公司注册商标。
TypeScript具有类型系统,且是JavaScript的超集。 它可以编译成普通的JavaScript代码。 TypeScript支持任意浏览器,任意环境,任意系统并且是开源的。
TypeScript目前还在积极的开发完善之中,不断地会有新的特性加入进来。 因此本手册也会紧随官方的每个commit,不断地更新新的章节以及修改措词不妥之处。
如果你对TypeScript一见钟情,可以订阅and star本手册,及时了解ECMAScript 2015以及2016里新的原生特性,并借助TypeScript提前掌握使用它们的方式!
如果你对TypeScript的爱愈发浓烈,可以与楼主一起边翻译边学习,PRs Welcome!!!
在相关链接的末尾可以找到本手册的Github地址。
- 快速上手
- [ASP.NET Core](./doc/handbook/tutorials/ASP.NET Core.html)
- [ASP.NET 4](./doc/handbook/tutorials/ASP.NET 4.html)
- Gulp
- Knockout.js
- [React与webpack](./doc/handbook/tutorials/React & Webpack.html)
- [Angular 2](./doc/handbook/tutorials/Angular 2.html)
- 新增功能
- [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)
- [TypeScript 1.4](./doc/release-notes/TypeScript 1.4.html)
- [TypeScript 1.3](./doc/release-notes/TypeScript 1.3.html)
- [TypeScript 1.1](./doc/release-notes/TypeScript 1.1.html)
- 手册
- [基础类型](./doc/handbook/Basic Types.html)
- [变量声明](./doc/handbook/Variable Declarations.html)
- 接口
- 类
- 函数
- 泛型
- 枚举
- [类型推论](./doc/handbook/Type Inference.html)
- [类型兼容性](./doc/handbook/Type Compatibility.html)
- [高级类型](./doc/handbook/Advanced Types.html)
- Symbols
- [Iterators 和 Generators](./doc/handbook/Iterators and Generators.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)
- JSX
- Decorators
- 混入
- [三斜线指令](./doc/handbook/Triple-Slash Directives.html)
- [如何书写声明文件](./doc/handbook/declaration files/Introduction.html)
- [库的结构](./doc/handbook/declaration files/Library Structures.html)
- [该做什么与不该做什么](./doc/handbook/declaration files/Do's and Don'ts.html)
- [由例子入手](./doc/handbook/declaration files/By Example.html)
- [深入探究](./doc/handbook/declaration files/Deep Dive.html)
- [发布到npm](./doc/handbook/declaration files/Publishing.html)
- [查找安装与使用](./doc/handbook/declaration files/Consumption.html)
- 工程配置
- tsconfig.json
- [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)
- [使用TypeScript的每日构建版本](./doc/handbook/Nightly Builds.html)
- Wiki
- TypeScript里的this
- 编码规范
- [常见编译错误](./doc/wiki/Common Errors.html)
- 支持TypeScript的编辑器
- 结合ASP.NET v5使用TypeScript
- 架构概述
- 发展路线图
- 2016-09-26 新增章节:[基础类型 - Never](./doc/handbook/Basic Types.html)
- 2016-08-19 新增章节:[如何书写声明文件](./doc/handbook/declaration files/Introduction.html)
- 2016-07-21 新增章节:[noUnusedLocals和noUnusedParameter编译选项](./doc/handbook/Compiler Options in MSBuild.html)
- 2016-07-21 新增章节:tsconfig.json文件里的include和exclude匹配
- 2016-07-20 新增章节:this参数
- 2016-07-20 新增章节:readonly属性
- 2016-07-20 新增章节:[基本类型 - Null and Undefined](./doc/handbook/Basic Types.html)
- 2016-06-15 新增章节:快速上手:[Angular 2](./doc/handbook/tutorials/Angular 2.html)
- 2016-06-11 新增章节:快速上手:Gulp
- 2016-04-23 新增章节:[使用TypeScript的每日构建版本](./doc/handbook/Nightly Builds.html)