In this section, we will learn how to install TypeScript, pre-requisites before installation of TypeScript, and in how many ways we can install TypeScript.
There are two ways to install TypeScript:
Step-1 Install Node.js. It is used to setup TypeScript on our local computer.
To install Node.js on Windows, go to the following link: https://www.rookienerd.com/install-nodejs
To install Node.js in Linux/Ubuntu/CentOS, go to the following link: https://www.rookienerd.com/install-nodejs-on-linux-ubuntu-centos
To verify the installation was successful, enter the following command in the Terminal Window.
$ node -v $ npm -v
Step-2 Install TypeScript. To install TypeScript, enter the following command in the Terminal Window.
$ npm install typescript --save-dev //As dev dependency $ npm install typescript -g //Install as a global module $ npm install typescript@latest -g //Install latest if you have an older version
Step-3 To verify the installation was successful, enter the command $ tsc -v in the Terminal Window.
Step-1 Install IDE like Eclipse, Visual Studio, WebStorm, Atom, Sublime Text, etc. Here, we install Eclipse. To install Eclipse, go to the following link:
In Windows: https://www.rookienerd.com/javafx-how-to-install-eclipse
In Ubantu: https://www.rookienerd.com/how-to-install-eclipse-in-ubuntu
In CentOS: https://www.rookienerd.com/how-to-install-eclipse-on-centos
Step-2 Install TypeScript plug-in.
We can also run our script online with the official compiler. To do this, go to the below link. https://www.typescriptlang.org/play/index.html