November 2019
Beginner
436 pages
8h 52m
English
From a web interface perspective, we have a fully functional Login component that navigates users to the /chat page, which contains the chat works! text label. Let's replace this content with a list of chat groups that users can join:
import { AngularFireDatabaseModule } from '@angular/fire/database'; @NgModule({ // ... imports: [ // ... AngularFireModule.initializeApp(environment.firebaseConfig), AngularFireAuthModule, AngularFireDatabaseModule ], // ... }) export class AppModule {}
The preceding code is going to enable additional APIs so that we can communicate with Firebase's databases.
Read now
Unlock full access