Skip to content

astechedu/angular-app

Repository files navigation

Angular App Installation

Prerequisites

To use the Angular framework, you should be familiar with the following:

JavaScript
HTML
CSS

To install Angular on your local system, you need the following:

Node.js

Angular requires an active LTS or maintenance LTS version of Node.js.

Run in a terminal window

	node -v 
	npm -v

Install the Angular CLI

npm install -g @angular/cli

Create a workspace and initial application

ng new my-app

Run the application

cd my-app
ng serve --open

The --open (or just -o) option automatically opens your browser to http://localhost:4200/.

👍