Adrian Swindle Justin Wang Sam Sheppard
- Install Nodejs
- Install Angular CLI
npm install -g @angular/cli
- Visual Studio 2022
First, go into the chat-app folder:
ng serve
-
Angular webstie
-
This website has good UI components that we can use:
-
Components:
-
components are generally a different web page in the website. Use the default app.component.html componnent for the UI elements that are always present, all other webpages will be children of the app.component.
-
To generate a component: https://angular.dev/cli/generate/component
-
Documentation:https://angular.dev/guide/components
-
Routing:
- app.routing is the file where the routing of the website will go, i.e. what url will take you to what webpage.
- I think this is the documentation: https://angular.dev/guide/ngmodules/lazy-loading#create-a-feature-module-with-routing
-