Thumbnail for video 'Learning Typescript - Installing TypeScript'

← Back to courses

Installing TypeScript

In this video I'll show you how to install the TypeScript compiler on your computer. The compiler is key to start using TypeScript because it transpiles TypeScript code into JavaScript that browsers can interpret.

Installation command

After installing the node.js runtime, run this to install TypeScript:

npm install -g typescript

Useful resources