Getting Started - Angular seed:

Step 1: Setup Node.js and npm

Node JS: Download: https://nodejs.org/en/download/

Verify: In command prompt: node -v

Update npm (optional) npm install npm@latest -g

Step 2: install Typescript:

npm install -g typescript@2.0.2

Step 3: Install dependencies

cd quickstart npm install npm start


Getting Started - Angular CLI (Command Line Interface) (https://www.sitepoint.com/ultimate-angular-cli-reference/)

Step 1: Install Angular CLI

npm install -g @angular/cli

Step 2: Create new project (check ng new --help)

ng new my-app-using-cli 

Step 3: Run the application

ng serve

Issues and Resolution:


Issue 1:

npm ERR! code SELF_SIGNED_CERT_IN_CHAIN

Resolution:

npm set strict-ssl false

In vs code, add below key in settings.json File-->Preferences-->Settings (C:\Users{username}\AppData\Roaming\Code\User\settings.json) "http.proxyStrictSSL": false