July 2018
Intermediate to advanced
420 pages
8h 46m
English
It's pretty simple to install and get started with TypeScript. It is necessary to have Node.js and Node Package Manager (NPM) installed on your machine.
If you don't have them yet, go to https://nodejs.org/en/download/ and follow the step-by-step installation instructions for your platform.
Let's install TypeScript, as follows:
npm install -g typescript
Note that the -g flag means to install the compiler on your machine globally.
tsc --help
The preceding command will provide a lot of information about the TypeScript compiler; we will see a ...
Read now
Unlock full access