Angular mini-tutorials 02: Environment configuration.

Manuel Hernández Lemus
1 min readOct 28, 2019

We already know that it is Angular, now we will learn how configure the enviroment to work with this powerful framework.

The first step to do is the installation of NodeJS, once installed Node, we proceed to install Typescript, base language to develop with Angular, for this we open the console and place the following line:

npm install -g typescript

To ckeck the installed version Node and TypeScript:

npm -v & tsc -v

If you already have NodeJS installed, you can update with the following line:

npm install -g npm@latest

Now, we will install Angular CLI

npm install -g @angular/cli

What is Angular CLI? Is the standar command line tool to create, debug and publish Angular applications.

We have everything ready to work with Angular, check version:

ng --version

--

--

No responses yet