Install the VS Code editor on Ubuntu

Run following curl command to download Microsoft GPG key # curl https://packages.microsoft.com/keys/microsoft.asc | gpg –dearmor > microsoft.gpg Then install the key via command: # sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg Add the …

Create a project in Angular

Type following command to create a new project: # ng new <PROJECT-NAME> It will ask “Would you like to add Angular routing? (y/N)” – Type y and hit EnterOn the …

Install NodeJs and Angular CLI

How to Install NodeJs and Angular CLI Steps for installing NodeJS Open https://nodejs.org/ Download the LTS version and install it. ( *LTS – Long term support) After installation, opens the …