5 - Angular Services
In this section we discuss angular service
1. Generate a new angular service
nx generate @nrwl/angular:service services/auth/auth2. Add login method and http post for the login
/// abbreviated code
import { HttpClientModule } from '@angular/common/http';
@NgModule({
imports: [CommonModule, RouterModule, HttpClientModule],
declarations: [LoginComponent, LoginFormComponent]
})
export class AuthModule {}
/// abbreviated code3. Update Login component to call the service
4. Attempt to login with default users

Last updated