TypeScript/README.md

104 lines
5.9 KiB
Markdown
Raw Normal View History

2015-03-22 19:32:47 +08:00
# TypeScript
2015-12-06 20:07:48 +08:00
2017-04-04 11:18:48 +08:00
[![Build Status](https://travis-ci.org/zhongsp/TypeScript.svg?branch=master)](https://travis-ci.org/zhongsp/TypeScript) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
2015-12-27 08:11:55 +08:00
2017-06-29 16:04:12 +08:00
[TypeScript 2.4 发布!](https://blogs.msdn.microsoft.com/typescript/2017/06/27/announcing-typescript-2-4/)
2016-10-06 14:41:00 +08:00
2017-06-18 10:32:41 +08:00
:link: [一大波新的快速开始指南ReactAngularNodejsASP.NET CoreReact NativeVueGlimmerWeChatDojo2Knockout等](./doc/quick-start/README.md)
2017-06-18 10:28:08 +08:00
2017-07-08 12:28:41 +08:00
<img src="./misc/ts_logo.jpg" alt="TypeScript" width="24px" height="24px"> TypeScript是JavaScript的超集并且能够编译输出为纯粹的JavaScript.
2015-03-23 08:03:45 +08:00
2015-12-06 20:07:48 +08:00
请阅读 :book: [TypeScript Handbook 中文版 - Published with GitBook](http://zhongsp.gitbooks.io/typescript-handbook/content/)
## 目录
2016-06-01 13:09:40 +08:00
* [快速上手](./doc/handbook/tutorials/README.md)
2017-05-16 10:22:37 +08:00
* [5分钟了解TypeScript](./doc/handbook/tutorials/TypeScript%20in%205%20minutes.md)
2017-04-04 11:02:49 +08:00
* [ASP.NET Core](./doc/handbook/tutorials/ASP.NET%20Core.md)
* [ASP.NET 4](./doc/handbook/tutorials/ASP.NET%204.md)
2016-06-11 16:24:35 +08:00
* [Gulp](./doc/handbook/tutorials/Gulp.md)
2016-06-02 16:47:09 +08:00
* [Knockout.js](./doc/handbook/tutorials/Knockout.md)
2017-04-04 11:02:49 +08:00
* [React与webpack](./doc/handbook/tutorials/React%20&%20Webpack.md)
* [React](./doc/handbook/tutorials/React.md)
2017-04-04 11:02:49 +08:00
* [Angular 2](./doc/handbook/tutorials/Angular%202.md)
* [从JavaScript迁移到TypeScript](./doc/handbook/tutorials/Migrating%20from%20JavaScript.md)
* [新增功能](./doc/release-notes/README.md)
2017-07-08 12:09:56 +08:00
* [TypeScript 2.4](./doc/release-notes/TypeScript%202.4.md)
* [TypeScript 2.3](./doc/release-notes/TypeScript%202.3.md)
2017-04-04 11:02:49 +08:00
* [TypeScript 2.2](./doc/release-notes/TypeScript%202.2.md)
* [TypeScript 2.1](./doc/release-notes/TypeScript%202.1.md)
* [TypeScript 2.0](./doc/release-notes/TypeScript%202.0.md)
* [TypeScript 1.8](./doc/release-notes/TypeScript%201.8.md)
* [TypeScript 1.7](./doc/release-notes/TypeScript%201.7.md)
* [TypeScript 1.6](./doc/release-notes/TypeScript%201.6.md)
* [TypeScript 1.5](./doc/release-notes/TypeScript%201.5.md)
* [TypeScript 1.4](./doc/release-notes/TypeScript%201.4.md)
* [TypeScript 1.3](./doc/release-notes/TypeScript%201.3.md)
* [TypeScript 1.1](./doc/release-notes/TypeScript%201.1.md)
2016-04-10 09:29:24 +08:00
* [手册](./doc/handbook/README.md)
2017-04-04 11:02:49 +08:00
* [基础类型](./doc/handbook/Basic%20Types.md)
* [变量声明](./doc/handbook/Variable%20Declarations.md)
* [接口](./doc/handbook/Interfaces.md)
* [](./doc/handbook/Classes.md)
* [函数](./doc/handbook/Functions.md)
* [泛型](./doc/handbook/Generics.md)
2016-04-10 20:16:11 +08:00
* [枚举](./doc/handbook/Enums.md)
2017-04-04 11:02:49 +08:00
* [类型推论](./doc/handbook/Type%20Inference.md)
* [类型兼容性](./doc/handbook/Type%20Compatibility.md)
* [高级类型](./doc/handbook/Advanced%20Types.md)
* [Symbols](./doc/handbook/Symbols.md)
2017-04-04 11:02:49 +08:00
* [Iterators 和 Generators](./doc/handbook/Iterators%20and%20Generators.md)
2016-04-10 20:16:11 +08:00
* [模块](./doc/handbook/Modules.md)
* [命名空间](./doc/handbook/Namespaces.md)
2017-04-04 11:02:49 +08:00
* [命名空间和模块](./doc/handbook/Namespaces%20and%20Modules.md)
* [模块解析](./doc/handbook/Module%20Resolution.md)
* [声明合并](./doc/handbook/Declaration%20Merging.md)
* [书写.d.ts文件](./doc/handbook/Writing%20Definition%20Files.md)
* [JSX](./doc/handbook/JSX.md)
2016-04-10 20:16:11 +08:00
* [Decorators](./doc/handbook/Decorators.md)
* [混入](./doc/handbook/Mixins.md)
2017-04-04 11:02:49 +08:00
* [三斜线指令](./doc/handbook/Triple-Slash%20Directives.md)
* [如何书写声明文件](./doc/handbook/declaration%20files/Introduction.md)
* [结构](./doc/handbook/declaration%20files/Library%20Structures.md)
* [规范](./doc/handbook/declaration%20files/Do's%20and%20Don'ts.md)
* [举例](./doc/handbook/declaration%20files/By%20Example.md)
* [深入](./doc/handbook/declaration%20files/Deep%20Dive.md)
* [发布](./doc/handbook/declaration%20files/Publishing.md)
* [使用](./doc/handbook/declaration%20files/Consumption.md)
2016-04-10 09:29:24 +08:00
* [工程配置](./doc/handbook/README.md)
* [tsconfig.json](./doc/handbook/tsconfig.json.md)
2017-04-04 11:02:49 +08:00
* [NPM包的类型](./doc/handbook/Typings%20for%20NPM%20Packages.md)
* [编译选项](./doc/handbook/Compiler%20Options.md)
* [在MSBuild里使用编译选项](./doc/handbook/Compiler%20Options%20in%20MSBuild.md)
* [与其它构建工具整合](./doc/handbook/Integrating%20with%20Build%20Tools.md)
* [使用TypeScript的每日构建版本](./doc/handbook/Nightly%20Builds.md)
* [Wiki](./doc/wiki/README.md)
* [TypeScript里的this](./doc/wiki/this-in-TypeScript.md)
* [编码规范](./doc/wiki/coding_guidelines.md)
2017-04-04 11:02:49 +08:00
* [常见编译错误](./doc/wiki/Common%20Errors.md)
* [支持TypeScript的编辑器](./doc/wiki/TypeScript-Editor-Support.md)
* [结合ASP.NET v5使用TypeScript](./doc/wiki/Using-TypeScript-With-ASP.NET-5.md)
* [架构概述](./doc/wiki/Architectural-Overview.md)
* [发展路线图](./doc/wiki/Roadmap.md)
2016-10-24 09:13:18 +08:00
* [Breaking Changes](./doc/breaking-changes/breaking-changes.md)
2017-04-22 19:51:34 +08:00
* [TypeScript 2.3](./doc/breaking-changes/TypeScript%202.3.md)
2017-04-22 19:48:47 +08:00
* [TypeScript 2.2](./doc/breaking-changes/TypeScript%202.2.md)
2017-04-17 14:27:24 +08:00
* [TypeScript 2.1](./doc/breaking-changes/TypeScript%202.1.md)
2017-04-04 11:02:49 +08:00
* [TypeScript 2.0](./doc/breaking-changes/TypeScript%202.0.md)
* [TypeScript 1.8](./doc/breaking-changes/TypeScript%201.8.md)
* [TypeScript 1.7](./doc/breaking-changes/TypeScript%201.7.md)
* [TypeScript 1.6](./doc/breaking-changes/TypeScript%201.6.md)
* [TypeScript 1.5](./doc/breaking-changes/TypeScript%201.5.md)
* [TypeScript 1.4](./doc/breaking-changes/TypeScript%201.4.md)
2015-04-15 08:56:08 +08:00
**TypeScript Handbook**
2015-04-14 19:56:05 +08:00
2015-06-06 08:17:18 +08:00
* Read [TypeScript Handbook (Recommended, BUT not up to date officially)](http://www.typescriptlang.org/Handbook)
2016-11-11 11:28:52 +08:00
* Read [TypeScript手册中文版 - Published with GitBook持续更新中最新版](http://zhongsp.gitbooks.io/typescript-handbook/content/):book:
2015-04-14 19:53:30 +08:00
2015-04-15 08:56:08 +08:00
**TypeScript Language Specification**
2015-04-14 19:56:05 +08:00
2016-11-11 11:28:52 +08:00
* Read [TypeScript Language Specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)
2015-03-23 09:34:18 +08:00
I'd love for you to contribute to the translation:)