...

/

Firebase Real-time Database in React

Firebase Real-time Database in React

In this section, we'll be introduced to the Firebase Realtime Database and its functionality.

Storing User Data

So far, only Firebase knows about our users. There is no way to retrieve a single user or a list of users for our application from Firebase’s authentication database.

The users are stored internally by Firebase to keep the authentication secure. That’s good because we don’t need to be involved in storing sensitive data like passwords. ...