Configuration Flashcards
how to check your angular version?
ng version
how to create a new angular project?
ng new [name of app]
how do you run your angular app?
ng serve
package.json is similar to what in Springboot?
the pom.xml
what does ts.config do?
it lets the browser read typescript
how to create an typescript call in angular?
ng g class name of class
the typescricpt class properties should match what in springboot?
the jpa model/entity
how to create an component in angular?
ng g c component name
what 3 files are created when you create a component in angular?
component. html
component.css
component.ts
what does app.component do in angular?
it holds all the components
How do you use a for loop in angular?
*NgFor = let employee for employee
how to create an angular service?
ng g s serviceName
what does HttpClientModule do in angular?
it allows you to make api calls
how to make rest api calls?
create an observable method in service that return this.httpclient.get(url
)
what does app.routing.module does in angular?
it handles routing and navigation