We are going to be focusing on Firebase Auth SDK over this chapter. We are going to create an authentication flow that grants us access to our Create-Read-Update-Delete (CRUD) functionalities that we implemented earlier. We will perform this thanks to the Firebase authenticate API to validate credentials against their response from the server. We will also use Firestore to store user information in a collection (similar to tables in the SQL kind of databases).
Then we ...