An open API service indexing awesome lists of open source software.

https://github.com/astechedu/angular-app

Angular App Installation
https://github.com/astechedu/angular-app

angular angular-app angular-cli

Last synced: 6 months ago
JSON representation

Angular App Installation

Awesome Lists containing this project

README

          

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

:+1: