Skip to content

Latest commit

 

History

History
45 lines (23 loc) · 844 Bytes

README.md

File metadata and controls

45 lines (23 loc) · 844 Bytes

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/.

👍