Skip to content
SunilOS edited this page Aug 3, 2019 · 7 revisions

Welcome to the SOSTypeScript wiki!

Typescript installation and configuration

Installing Node JS

To install Node.js in Windows go to the following link: https://nodejs.org/en/download

To verify the installation was successful, or not Open a Command Prompt and type command node -v and hit enter.

If node js is installed it will show the node js version as x.x.x

Installing Typescript

To install TypeScript enter the following command in the Command Prompt as

npm install -g typescript

To verify the installation was successful type command as tsc -v and hit enter.

This will show you the Typescript version as version x.x.x

Typescript Editor

There are many Typescript editors available online such as Sublime Text3, Notepad++, Brackets, etc. you can use any of them but I found visual studio code editor is the most user-friendly that is used in this tutorial.

Visual Studio Code is a lightweight but powerful source code editor which runs on your desktop and is available for Windows, macOS, and Linux. It comes with built-in support for JavaScript, TypeScript, and Node.js and has a rich ecosystem of extensions for other languages.

You can download Visual Studio Code from visual studio official website by clicking on this link - https://code.visualstudio.com/docs

Clone this wiki locally