Getting started with Angular

NodeJS is a Javascript runtime built on Chrome's V;8 Javascript enginearrow-up-right. It was initially designated for backend Javascript development, but it is very popular in the frontend development.

Prerequisites

Firstly install NodeJS in your system.

NodeJS

Get the latest NodeJS from NodeJS websitearrow-up-right, and install it into your local system.

#node -v
v12.7.0

The most attractive feature of NodeJS is its package management, aka NPM. Nowadays, most of the popular Javascript projects are published via NPM registry, which is a central place to share your Javascript package to others. The NPM client tool is shipped with NodeJS installation by default.

>npm -v
6.10.0

Another popular packager is Yarnarrow-up-right, which is created by Facebook. Please go to the yarn website to get more details.

VS Code

As a sibling project of Visual Studio, VS Code provides a lightweight code environment for web developers.

Get a copy of VSCode from VS Code websitearrow-up-right, and install it into your system. To improve Angular code experience, you can install some useful extensions from VSCode marketplace, eg. The Angular Essentialsarrow-up-right extension pack includes several popular plugins which is helpful to build an Angular application. is helpful to build an Angular application.

Last updated