top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How Can You Get TypeScript and Install It?

+1 vote
239 views
How Can You Get TypeScript and Install It?
posted Nov 18, 2016 by Jdk

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes
 
Best answer

TypeScript can be installed and managed via npm, the Node.js package manager. To install TypeScript, first ensure the npm is installed properly. And then run the following command to install TypeScript globally on your system.

npm install -g typescript

TypeScript is included in Visual Studio 2013 Update 2 and Visual Studio 2015 by default. TypeScript also provides support for other editors like Visual Studio Code, sublime, Emacs and Vim.

answer Nov 21, 2016 by Manikandan J
...