Installing TypeScript on Ubuntu Desktop

In this post I will share how to install TypeScript and Gulp.

Note: this post is a part of the series of posts about my experience using Ubuntu Desktop for software development.

 

Prerequisites

For TypeScript and Gulp to work they require Node and NPM installed on your machine. Follow these steps to install Node and NPM on Ubuntu Desktop.

 

TypeScript

You install TypeScript by installing typescript npm package globally.

$ sudo npm install -g typescript

To check the TypeScript compiler version type

$ tsc --version

blog-22-01

This is the minimum you need to do to install TypeScript and start using it.

Continue reading “Installing TypeScript on Ubuntu Desktop”

Installing TypeScript on Ubuntu Desktop