- TypeScript - Ambients
- TypeScript - Modules
- TypeScript - Namespaces
- TypeScript - Objects
- TypeScript - Classes
- TypeScript - Interfaces
- TypeScript - Union
- TypeScript - Tuples
- TypeScript - Arrays
- TypeScript - Strings
- TypeScript - Numbers
- TypeScript - Functions
- TypeScript - Loops
- TypeScript - Decision Making
- TypeScript - Operators
- TypeScript - Variables
- TypeScript - Types
- TypeScript - Basic Syntax
- TypeScript - Environment Setup
- TypeScript - Overview
- TypeScript - Home
TypeScript Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
TypeScript - Environment Setup
We already have set up TypeScript programming onpne, so that you can execute all the available examples onpne at the same time when you are doing your theory work. This gives you confidence in what you are reading and to check the result with different options. Feel free to modify any example and execute it onpne.
var message:string = "Hello World" console.log(message)
On compipng, it will generate following JavaScript code.
//Generated by typescript 1.8.10 var message = "Hello World"; console.log(message);
In this chapter, we will discuss how to install TypeScript on Windows platform. We will also explain how to install the Brackets IDE.
You may test your scripts onpne by using The TypeScript at
. The onpne editor shows the corresponding JavaScript emitted by the compiler.You may try the following example using Playground.
var num:number = 12 console.log(num)
On compipng , it will generate following JavaScript code.
//Generated by typescript 1.8.10 var num = 12; console.log(num);
The output of the above program is given below −
12
Local Environment Setup
Typescript is an Open Source technology. It can run on any browser, any host, and any OS. You will need the following tools to write and test a Typescript program −
A Text Editor
The text editor helps you to write your source code. Examples of a few editors include Windows Notepad, Notepad++, Emacs, vim or vi, etc. Editors used may vary with Operating Systems.
The source files are typically named with the extension .ts
The TypeScript Compiler
The TypeScript compiler is itself a .ts file compiled down to JavaScript (.js) file. The TSC (TypeScript Compiler) is a source-to-source compiler (transcompiler / transpiler).
The TSC generates a JavaScript version of the .ts file passed to it. In other words, the TSC produces an equivalent JavaScript source code from the Typescript file given as an input to it. This process is termed as transpilation.
However, the compiler rejects any raw JavaScript file passed to it. The compiler deals with only .ts or .d.ts files.
Instalpng Node.js
Node.js is an open source, cross-platform runtime environment for server-side JavaScript. Node.js is required to run JavaScript without a browser support. It uses Google V8 JavaScript engine to execute code. You may download Node.js source code or a pre-built installer for your platform. Node is available here −
Installation on Windows
Follow the steps given below to install Node.js in Windows environment.
Step 1 − Download and run the .msi installer for Node.
Step 2 − To verify if the installation was successful, enter the command node –v in the terminal window.
Step 3 − Type the following command in the terminal window to install TypeScript.
npm install -g typescript
Installation on Mac OS X
To install node.js on Mac OS X, you can download a pre-compiled binary package which makes a nice and easy installation. Head over to
and cpck the install button to download the latest package.Install the package from the .dmg by following the install wizard which will install both node and npm. npm is Node Package Manager which faciptates installation of additional packages for node.js.
Installation on Linux
You need to install a number of dependencies before you can install Node.js and NPM.
Ruby and GCC. You’ll need Ruby 1.8.6 or newer and GCC 4.2 or newer.
Homebrew. Homebrew is a package manager originally designed for Mac, but it’s been ported to Linux as Linuxbrew. You can learn more about Homebrew at
and Linuxbrew atOnce these dependencies are installed, you may install Node.js by using the following command on the terminal −
brew install node.
IDE Support
Typescript can be built on a plethora of development environments pke Visual Studio, Subpme Text 2, WebStorm/PHPStorm, Ecppse, Brackets, etc. Visual Studio Code and Brackets IDEs are discussed here. The development environment used here is Visual Studio Code (Windows platform).
Visual Studio Code
This is an open source IDE from Visual Studio. It is available for Mac OS X, Linux and Windows platforms. VScode is available at −
Installation on Windows
Step 1 −
for Windows.Step 2 − Double-cpck on VSCodeSetup.exe to launch the setup process. This will only take a minute.
Step 3 − A screenshot of the IDE is given below.
Step 4 − You may directly traverse to the file’s path by right cpcking on the file → open in command prompt. Similarly, the Reveal in Explorer option shows the file in the File Explorer.
Installation on Mac OS X
Visual Studio Code’s Mac OS X specific installation guide can be found at
Installation on Linux
Linux specific installation guide for Visual Studio Code can be found at
Brackets
Brackets is a free open-source editor for web development, created by Adobe Systems. It is available for Linux, Windows and Mac OS X. Brackets is available at
TypeScript Extensions for Brackets
Brackets supports extensions for adding extra functionapty via the Extension Manager. The following steps explain instalpng TypeScript extensions using the same.
Post installation, cpck on the extension manager icon on the right-hand side of the editor. Enter typescript in the search box.
Install the Brackets TSLint and Brackets TypeScript plugins.
You can run DOS prompt / shell within Brackets itself by adding one more extension Brackets Shell.
Upon installation, you will find an icon of shell on the right-hand side of the editor . Once you cpck on the icon, you will see the shell window as shown below −
Note − Typescript is also available as a plugin for Visual Studio 2012 and 2013 environments
2015 and above includes Typescript plugin by default.Now, you are all set!!!
Advertisements