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
- Host: GitHub
- URL: https://github.com/astechedu/angular-app
- Owner: astechedu
- Created: 2022-02-09T04:49:33.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-09T05:21:05.000Z (almost 4 years ago)
- Last Synced: 2025-03-18T01:49:44.179Z (10 months ago)
- Topics: angular, angular-app, angular-cli
- Language: HTML
- Homepage:
- Size: 173 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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: