Getting Started With TypeScript

What is TypeScript?

 
TypeScript is a typed superset of Javascript that compiles to plain JavaScript. It adds static typing, using type Annotation, which enables type checking at the compile-time and also adds class-based OOPS concepts to JavaScript. As we know, TypeScript is a superset of JavaScript, which makes any JavaScript program a valid TypeScript program. It is a free, open-source and cross-platform programming language developed and maintained by Microsoft. Even AngularJS 2.0 is written in TypeScript.
 
In this article, we will use the Visual Studio code editor to create a Hello World Application in TypeScript.
 
Let’s begin
 
Go to https://nodejs.org/en/ and Download Node.js (which is a JavaScript runtime built on Chrome’s V8 runtime engine).
 
 
 
Once the download is complete, install Node.js.
 
 
 
 
Now, open CMD prompt in order to install TypeScript. We will use NPM (Node Package Manager) to install TypeScript. (In image 1 given below, the command is used to install the latest stable TypeScript version and 2 is editors used for TypeScript).
 
 
 
Type NPM install -g TypeScript command.
 
 
 
Type tsc -version in order to check the installed version of TypeScript.
 
 
 
There are several code editors available like Visual Studio Code, Sublime, WebStorm, Eclipse, Vim, etc. In this series, we will use the Visual Studio Code as a code editor. Visit https://code.visualstudio.com/ and click Download.
 
 
 
Install Visual Studio code editor.
 
 
 
After installing, click Explorer icon and then click Open Folder. I have created a folder named HelloWorldinTS. Click Select Folder. 
 
 
 
Click Add New File and name it as app.ts (You can name it, as you want).
 
 
 
Add the code given below in app.ts.
 
 
  1. class MyFirstApp {  
  2.  _Name: string;  
  3.  constructor(public Name: string) {  
  4.   this._Name = Name;  
  5.  }  
  6.  ShowHelloMessage() {  
  7.   console.log("Hello " + this._Name)  
  8.  }  
  9. }  
  10. let objMyFirstApp = new MyFirstApp("Anoop");  
  11. objMyFirstApp.ShowHelloMessage();   
Here, I have created a class with a constructor that takes name parameter of type string and a method, which prints Hello [Name] as an output on the console. Subsequently, I created objMyFirstApp object of that class and invoked ShowHelloMessage (We will learn in-depth about each thing in my upcoming article on TypeScript).
 
Now, press Crtl+Shift+P to open the command palette, type Tasks and select Run Build Task (We can compile it, using tsc in the command prompt but, in this article, I will show you how to compile or build it using Visual Studio code). Select Run Build Task (or Press Crtl+Shift+B).
 
 
 
After clicking, you will see an alert, i.e. no task runner is configured. Click Configure Task Runner.
 
 
 
Now, select TypeScript to create tasks.json file in your Workspace .vscode folder.
 
 
 
Whenever we build our code, it will use tsc command (The command tsc assumes that tsc has been installed, using npm install -g TypeScript) with several arguments like target ES5, outDir as js (I want to store compiled *.js code in js folder), watch will detect the changes and compile the code on saving. I want an app.ts file to be compiled. 
 
 
  1. {  
  2.  "version""0.1.0",  
  3.  "command""tsc",  
  4.  "isShellCommand"true,  
  5.  "args": ["--target""ES5""--outDir""js""--sourceMap""--watch""app.ts"],  
  6.  "showOutput""silent",  
  7.  "isWatching"true,  
  8.  "problemMatcher""$tsc-watch"  
  9. }   
Now, press Crtl+Shift+B in order to run the build task. You will see the JS directory is created in your Workspace folder with the app.js file. As we set tsc in watch mode, whenever we change and save our TypeScript Code, it will be compiled immediately.
 
 
 
Integrating Debugger in Visual Studio code 
 
Now, I want to debug my code or want to see the output in the Visual Studio code’s console. Click the Debug icon on the left side of the Visual Studio Code and Click the little gear icon (i.e. Open launch.json file). Visual Studio code automatically detects your development environment. 
 
 
 
Visual Studio Code supports debugging a program in launch or attaching it to the already running program. Here, I mentioned the program files and outFiles location in the launch.json file.
 
 
  1. {  
  2.  "version""0.2.0",  
  3.  "configurations": [{  
  4.   "type""node",  
  5.   "request""launch",  
  6.   "name""Launch Program",  
  7.   "program""${workspaceRoot}/app.ts",  
  8.   "cwd""${workspaceRoot}",  
  9.   "outFiles": ["${workspaceRoot}/js/*.js"]  
  10.  }, {  
  11.   "type""node",  
  12.   "request""attach",  
  13.   "name""Attach to Process",  
  14.   "port": 5858,  
  15.   "outFiles": []  
  16.  }]  
  17. }   
Now, hit F5. You will see the output on the Debug console of VS code.
 
 
 
We can also set the breakpoints in order to debug the code at a particular step and use step-in/out, step over and other things for debugging purposes.
 
 
 
Other Related Articles:


Similar Articles