2014-10-10 04:31:22 +04:00
[![Build Status ](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master )](https://travis-ci.org/Microsoft/TypeScript)
2015-11-12 18:38:04 +03:00
[![npm version ](https://badge.fury.io/js/typescript.svg )](https://www.npmjs.com/package/typescript)
[![Downloads ](https://img.shields.io/npm/dm/TypeScript.svg )](https://www.npmjs.com/package/typescript)
2014-10-10 04:31:22 +04:00
2014-07-08 04:08:16 +04:00
# TypeScript
2015-06-05 22:04:15 +03:00
[![Join the chat at https://gitter.im/Microsoft/TypeScript ](https://badges.gitter.im/Join%20Chat.svg )](https://gitter.im/Microsoft/TypeScript?utm_source=badge& utm_medium=badge& utm_campaign=pr-badge& utm_content=badge)
2014-07-08 04:08:16 +04:00
2016-08-16 21:31:32 +03:00
[TypeScript ](http://www.typescriptlang.org/ ) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground ](http://www.typescriptlang.org/Playground ), and stay up to date via [our blog ](https://blogs.msdn.microsoft.com/typescript ) and [Twitter account ](https://twitter.com/typescriptlang ).
2014-07-08 04:08:16 +04:00
2015-07-24 21:28:08 +03:00
## Installing
For the latest stable version:
```
npm install -g typescript
```
For our nightly builds:
```
npm install -g typescript@next
```
2014-07-08 04:08:16 +04:00
2014-07-17 21:08:24 +04:00
## Contribute
There are many ways to [contribute ](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md ) to TypeScript.
* [Submit bugs ](https://github.com/Microsoft/TypeScript/issues ) and help us verify fixes as they are checked in.
* Review the [source code changes ](https://github.com/Microsoft/TypeScript/pulls ).
* Engage with other TypeScript users and developers on [StackOverflow ](http://stackoverflow.com/questions/tagged/typescript ).
* Join the [#typescript ](http://twitter.com/#!/search/realtime/%23typescript ) discussion on Twitter.
* [Contribute bug fixes ](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md ).
2015-09-19 10:53:15 +03:00
* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true), [pdf ](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true ), [md ](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md )).
2014-07-17 21:08:24 +04:00
2014-07-13 19:05:31 +04:00
## Documentation
* [Quick tutorial ](http://www.typescriptlang.org/Tutorial )
* [Programming handbook ](http://www.typescriptlang.org/Handbook )
2014-09-26 00:44:50 +04:00
* [Language specification ](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md )
2014-07-13 19:05:31 +04:00
* [Homepage ](http://www.typescriptlang.org/ )
## Building
2014-07-08 04:08:16 +04:00
2015-06-05 22:04:15 +03:00
In order to build the TypeScript compiler, ensure that you have [Git ](http://git-scm.com/downloads ) and [Node.js ](http://nodejs.org/ ) installed.
2014-07-21 21:38:22 +04:00
Clone a copy of the repo:
```
git clone https://github.com/Microsoft/TypeScript.git
```
Change to the TypeScript directory:
```
cd TypeScript
```
2016-06-10 03:44:59 +03:00
Install Gulp tools and dev dependencies:
2014-07-21 21:38:22 +04:00
```
2016-06-10 03:44:59 +03:00
npm install -g gulp
2014-07-21 21:38:22 +04:00
npm install
```
Use one of the following to build and test:
```
2016-06-10 03:44:59 +03:00
gulp local # Build the compiler into built/local
gulp clean # Delete the built compiler
gulp LKG # Replace the last known good with the built one.
2014-09-23 23:16:12 +04:00
# Bootstrapping step to be executed when the built compiler reaches a stable state.
2016-06-10 03:44:59 +03:00
gulp tests # Build the test infrastructure using the built compiler.
gulp runtests # Run tests using the built compiler and test infrastructure.
2014-09-23 23:16:12 +04:00
# You can override the host or specify a test for this command.
# Use host=< hostName > or tests=< testPath > .
2016-06-10 03:44:59 +03:00
gulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional
2014-09-23 23:17:34 +04:00
parameters 'host=', 'tests=[regex], reporter=[list|spec|json|< more > ]'.
2016-06-10 03:44:59 +03:00
gulp baseline-accept # This replaces the baseline test results with the results obtained from gulp runtests.
gulp lint # Runs tslint on the TypeScript source.
gulp help # List the above commands.
2014-07-21 21:38:22 +04:00
```
## Usage
```shell
2014-08-07 10:21:53 +04:00
node built/local/tsc.js hello.ts
2014-07-21 21:38:22 +04:00
```
2014-07-17 21:12:43 +04:00
## Roadmap
For details on our planned features and future direction please refer to our [roadmap ](https://github.com/Microsoft/TypeScript/wiki/Roadmap ).