Skip to content
This repository was archived by the owner on Sep 6, 2022. It is now read-only.

Angular Setup & Execution

RandyDaddis edited this page Jan 27, 2019 · 6 revisions
  1. Install Node.js

https://nodejs.org/en/

  1. Install Node Package Manager (NPM):

    npm install -g npm

  2. Install Angular CLI

https://cli.angular.io/

Install Angular Globally

npm install -g @angular/cli
  1. Create Angular Application

    'ng new spa --routing'

  2. Start Angular Application

    'ng serve'

  3. Browser

    'localhost:4200'

Angular Application Structure:

Angular Application File Structure

Clone this wiki locally