You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-1Lines changed: 15 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,19 @@
8
8
9
9
[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](http://blogs.msdn.com/typescript) and [twitter account](https://twitter.com/typescriptlang).
10
10
11
+
## Installing
12
+
13
+
For the latest stable version:
14
+
15
+
```
16
+
npm install -g typescript
17
+
```
18
+
19
+
For our nightly builds:
20
+
21
+
```
22
+
npm install -g typescript@next
23
+
```
11
24
12
25
## Contribute
13
26
@@ -63,7 +76,8 @@ jake runtests # Run tests using the built compiler and test infrastructu
63
76
# Use host=<hostName> or tests=<testPath>.
64
77
jake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional
0 commit comments