TypeScript

"Typescript" redirects here. For a typewritten manuscript, see Manuscript.
TypeScript
Paradigm Multi-paradigm: scripting, object-oriented, structured, imperative, functional, generic
Designed by Microsoft
Developer Microsoft
First appeared 1 October 2012 (2012-10-01)[1]
Stable release
2.0 / 22 September 2016 (2016-09-22)[2]
License Apache License 2.0
Filename extensions .ts
Website www.typescriptlang.org
Influenced by
JavaScript, Java, C#
Influenced
AtScript

TypeScript is a free and open-source programming language developed and maintained by Microsoft. It is a strict superset of JavaScript, and adds optional static typing and class-based object-oriented programming to the language. Anders Hejlsberg, lead architect of C# and creator of Delphi and Turbo Pascal, has worked on the development of TypeScript.[3][4][5][6] TypeScript may be used to develop JavaScript applications for client-side or server-side (Node.js) execution.

TypeScript is designed for development of large applications and transcompiles to JavaScript.[7] As TypeScript is a superset of JavaScript, any existing JavaScript programs are also valid TypeScript programs.

TypeScript supports definition files that can contain type information of existing JavaScript libraries, much like C/C++ header files can describe the structure of existing object files. This enables other programs to use the values defined in the files as if they were statically typed TypeScript entities. There are third-party header files for popular libraries like jQuery, MongoDB, and D3.js. TypeScript headers for the Node.js basic modules are also available, allowing development of Node.js programs within TypeScript.[8]

The TypeScript compiler is itself written in TypeScript, transcompiled to JavaScript and licensed under the Apache 2 License.

TypeScript is included as a first-class programming language in Microsoft Visual Studio 2013 Update 2 and later, beside C# and other Microsoft languages.[9] An official extension allows Visual Studio 2012 to support TypeScript as well.[10]

History

TypeScript was first made public in October 2012 (at version 0.8), after two years of internal development at Microsoft.[11][12] Soon after the announcement, Miguel de Icaza praised the language itself, but criticized the lack of mature IDE support apart from Microsoft Visual Studio, which is not available on Linux and OS X.[13][14] As of 2013 there is support in other IDEs, particularly in Eclipse, via a plug-in contributed by Palantir Technologies.[15][16] Various text editors, including Emacs, Vim, and Sublime also support TypeScript.[17] An Atom plugin is also available.[18]

TypeScript 0.9, released in 2013, added support for generics.[19] TypeScript 1.0 was released at Build 2014.[20] Visual Studio 2013 Update 2 provides built-in support for TypeScript.[21]

In July 2014, the development team announced a new TypeScript compiler, claiming 5× performance gains. Simultaneously, the source code, which was initially hosted on CodePlex, was moved to GitHub.[22]

On September 22, 2016, TypeScript 2.0 was released; it introduced several features, including the ability for programmers to optionally prevent variables from being assigned null values.[23]

Language design

TypeScript originated from the perceived shortcomings of JavaScript for the development of large-scale applications both at Microsoft and among their external customers.[24] Challenges with dealing with complex JavaScript code led to demand for custom tooling to ease developing of components in the language.[25]

TypeScript developers sought a solution that would not break compatibility with the standard and its cross-platform support. Knowing that the current ECMAScript standard proposal promised future support for class-based programming, TypeScript was based on that proposal. That led to a JavaScript compiler with a set of syntactical language extensions, a superset based on the proposal, that transforms the extensions into regular JavaScript. In this sense TypeScript was a preview of what to expect of ECMAScript 2015. A unique aspect not in the proposal, but added to TypeScript, is optional static typing [26] that enables static language analysis, which facilitates tooling and IDE support.

ECMAScript 2015 support

TypeScript adds support for features such as classes, modules and an arrow function syntax as proposed in the ECMAScript 2015 standard.

Language features

TypeScript is a language extension that adds features to ECMAScript 5. Additional features include:

The following features are backported from ECMAScript 2015:

Syntactically, TypeScript is very similar to JScript .NET, another Microsoft implementation of the ECMA-262 language standard that added support for static typing and classical object-oriented language features such as classes, inheritance, interfaces, and namespaces.

Compatibility with JavaScript

TypeScript is a strict superset of ECMAScript 2015, which is a superset of ECMAScript 5, commonly referred to as JavaScript.[28] As such, a JavaScript program is also a valid TypeScript program, and a TypeScript program can seamlessly consume JavaScript. By default the compiler targets ECMAScript 5, the current prevailing standard. But is also able to generate constructs used in ECMAScript 3 or 2015.

With TypeScript, it is possible to use existing JavaScript code, incorporate popular JavaScript libraries, and call TypeScript-generated code from other JavaScript.[29] Type declarations for these libraries are provided with the source code.

Type annotations

TypeScript provides static typing through type annotations to enable type checking at compile time. This is optional and can be ignored to use the regular dynamic typing of JavaScript.

function add(left: number, right: number): number {
	return left + right;
}

The annotations for the primitive types are number, boolean and string. Weakly- or dynamically-typed structures are of type any.

Type annotations can be exported to a separate declarations file to make type information available for TypeScript scripts using types already compiled into JavaScript. Annotations can be declared for an existing JavaScript library, as has been done for Node.js and jQuery.

The TypeScript compiler makes use of type inference to infer types when types are not given. For example, the add method in the code above would be inferred as returning a number even if no return type annotation had been provided. This is based on the static types of left and right being numbers, and the compiler's knowledge that the result of adding two numbers is always a number. However, explicitly declaring the return type allows the compiler to verify correctness.

If no type can be inferred because of lack of declarations, then it defaults to the dynamic any type. A value of the any type supports the same operations as a value in JavaScript and minimal static type checking is performed for operations on any values.[30]

Declaration files

When a TypeScript script gets compiled there is an option to generate a declaration file (with the extension .d.ts) that functions as an interface to the components in the compiled JavaScript. In the process the compiler strips away all function and method bodies and preserves only the signatures of the types that are exported. The resulting declaration file can then be used to describe the exported virtual TypeScript types of a JavaScript library or module when a third-party developer consumes it from TypeScript.

The concept of declaration files is analogous to the concept of header file found in C/C++.

declare module arithmetics {
    add(left: number, right: number): number;
    subtract(left: number, right: number): number;
    multiply(left: number, right: number): number;
    divide(left: number, right: number): number;
}

Type declaration files can be written by hand for existing JavaScript libraries, as has been done for jQuery and Node.js.

Large collections of declaration files for popular JavaScript libraries are hosted on GitHub in DefinitelyTyped and the Typings Registry. A command-line utility called typings is provided to help search and install declaration files from the repositories.

Classes

TypeScript supports ECMAScript 2015 classes that integrate the optional type annotations support.

class Person {
    private name: string;
    private age: number;
    private salary: number;

    constructor(name: string, age: number, salary: number) {
        this.name = name;
        this.age = age;
        this.salary = salary;
    }
    
    toString(): string {
        return `${this.name} (${this.age}) (${this.salary})`; // As of version 1.4
    }
}

Generics

TypeScript supports generic programming.[31]

Modules and namespaces

TypeScript distinguishes between modules and namespaces. Both features in TypeScript support encapsulation of classes, interfaces, functions and variables into containers. Namespaces (formerly internal modules) utilizes immediately-invoked function expression of JavaScript to encapsulate code, whereas modules (formerly external modules) leverage JavaScript library patterns to do so (AMD or CommonJS).[32]

Development tools

Compiler

The TypeScript compiler, named tsc, is written in TypeScript that can be compiled into regular JavaScript that can be executed in any JavaScript engine in any host, such as a browser. The compiler package comes bundled with a script host that can execute the compiler. It is also available as a Node.js package that uses Node.js as a host.

There is also an alpha version of a client-side compiler in JavaScript, which executes TypeScript code on the fly, upon page load.[33]

The current version of the compiler supports ECMAScript 5 by default. An option is allowed to target ECMAScript 2015 to make use of language features exclusive to that version (e.g. generators). Classes, despite being part of the ECMAScript 2015 standard, are available in both modes.

IDE and editor support

Integration with build automation tools

Using plug-ins, TypeScript can be integrated with build automation tools, including Grunt (grunt-ts[37]), Apache Maven (TypeScript Maven Plugin[38]) and Gradle (TypeScript Gradle Plugin[39]).

See also

References

  1. "TypeScript". CodePlex. Retrieved 26 April 2015.
  2. "TypeScript 2.0". TypeScript. Retrieved 2 October 2016.
  3. Foley, Mary Jo (1 October 2012). "Microsoft takes the wraps off TypeScript, a superset of JavaScript". ZDNet. CBS Interactive. Retrieved 26 April 2015.
  4. Somasegar, S. (1 October 2012). "Somasegar's blog". Somasegar’s blog. Microsoft. Retrieved 26 April 2015.
  5. Baxter-Reynolds, Matt (1 October 2012). "Microsoft TypeScript: Can the father of C# save us from the tyranny of JavaScript?". ZDNet. Retrieved 26 April 2015.
  6. Jackson, Joab (1 October 2012). "Microsoft Augments Javascript for Large-scale Development". CIO. IDG Enterprise. Retrieved 26 April 2015.
  7. Bright, Peter (3 October 2012). "Microsoft TypeScript: the JavaScript we need, or a solution looking for a problem?". Ars Technica. Condé Nast. Retrieved 26 April 2015.
  8. "borisyankov/DefinitelyTyped". GitHub. Retrieved 26 April 2015.
  9. TypeScript Homepage, "Visual Studio includes TypeScript in the box, starting with Visual Studio 2013 Update 2"
  10. TypeScript 1.0 Tools for Visual Studio 2012
  11. "Microsoft augments JavaScript for large-scale development". InfoWorld. IDG. 1 October 2012. Retrieved 26 April 2015.
  12. Turner, Jonathan (2 April 2014). "Announcing TypeScript 1.0". TypeScript Language team blog. Microsoft. Retrieved 26 April 2015.
  13. Miguel de Icaza (2012-10-01). "TypeScript: First Impressions". Retrieved 2012-10-12. But TypeScript only delivers half of the value in using a strongly typed language to Unix developers: strong typing. Intellisense, code completion and refactoring are tools that are only available to Visual Studio Professional users on Windows. There is no Eclipse, MonoDevelop or Emacs support for any of the language features
  14. "Microsoft TypeScript: Can the father of C# save us from the tyranny of JavaScript?". ZDNet. 2012-10-01. Retrieved 2012-10-12. And I think this is a pretty big misstep. If you're building web apps that run on anything other than Windows, you're likely using a Mac and most likely not using Visual Studio. You need the Visual Studio plug-in to get the IntelliSense. All you get without Visual Studio is the strong-typing. You don't get the productivity benefits you get from IntelliSense..
  15. "TypeScript-Unterstützung für Eclipse". heise Developer. 6 August 2013. Retrieved 26 April 2015.
  16. "TypeScript". Eclipse Marketplace. Eclipse Foundation. Retrieved 26 April 2015.
  17. Hillar, Gastón (14 May 2013). "Working with TypeScript in Visual Studio 2012". Dr. Dobb's Journal. Retrieved 26 April 2015.
  18. "TypeStrong: The only TypeScript package you will ever need". Retrieved 21 July 2016.
  19. "TypeScript 0.9 arrives with new compiler, support for generics". The Register. 18 June 2013. Retrieved 26 April 2015.
  20. Hejlsberg, Anders (2 April 2014). "TypeScript". Channel 9. Microsoft. Retrieved 26 April 2015.
  21. Jackson, Joab (25 February 2014). "Microsoft TypeScript graduates to Visual Studio". PC World. IDG. Retrieved 26 April 2015.
  22. Turner, Jonathan (21 July 2014). "New Compiler and Moving to GitHub". TypeScript Language team blog. Microsoft. Retrieved 26 April 2015.
  23. Bright, Peter (September 22, 2016). "TypeScript, Microsoft's JavaScript for big applications, reaches version 2.0". Ars Technica. Condé Nast. Retrieved September 22, 2016.
  24. Anders Hejlsberg (2012-10-05). "What is TypeScript and why with Anders Hejlsberg". www.hanselminutes.com. Retrieved 2014-01-15.
  25. S. Somasegar (2012-10-01). "TypeScript: JavaScript Development at Application Scale". msdn.com. Retrieved 2013-11-27.
  26. optional static typing is called gradual typing
  27. Klint Finley (2012-10-01). "Microsoft Previews New JavaScript-Like Programming Language TypeScript". TechCrunch. Retrieved 2013-11-27.
  28. "Angular 2". angular.io. Retrieved 2016-05-04.
  29. "Welcome to TypeScript". typescriptlang.org. Microsoft. Retrieved 26 April 2015.
  30. TypeScript Language Specification p.24
  31. Turner, Jonathan (18 June 2013). "Announcing TypeScript 0.9". TypeScript Language team blog. Microsoft.
  32. Sönke Sothmann (2014-01-31). "An introduction to TypeScript's module system". blog.oio.de. Retrieved 2014-02-21.
  33. "niutech/typescript-compile". GitHub. Retrieved 26 April 2015.
  34. Olivier Bloch (2012-10-01). "Sublime Text, Vi, Emacs: TypeScript enabled!". Microsoft. Retrieved 2012-10-28.
  35. "TypeScript support in WebStorm 6". JetBrains.
  36. "TypeScript support in ReSharper 8.1". JetBrains.
  37. "TypeStrong/grunt-ts". GitHub. Retrieved 26 April 2015.
  38. "ppedregal/typescript-maven-plugin". GitHub. Retrieved 26 April 2015.
  39. "sothmann/typescript-gradle-plugin". GitHub. Retrieved 26 April 2015.

External links

This article is issued from Wikipedia - version of the 12/1/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.