- Notifications
You must be signed in to change notification settings - Fork0
astechedu/angular-app
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
To use the Angular framework, you should be familiar with the following:
JavaScriptHTMLCSS
To install Angular on your local system, you need the following:
Node.jsAngular requires an active LTS or maintenance LTS version of Node.js.Run in a terminal windownode -v npm -v
npm install -g @angular/cli
ng new my-app
cd my-appng serve --open
The --open (or just -o) option automatically opens your browser tohttp://localhost:4200/.
👍