Firebase is a toolset to ābuild, improve, and grow your appā, and the tools it gives you cover a large portion of the services that developers would normally have to build themselves, but donāt really want to build, because theyād rather be focusing on the app experience itself. This includes things like analytics, authentication, databases, configuration, file storage, push messaging, and the list goes on. The services are hosted in the cloud, and scale with little to no effort on the part of the developer.
Build your app ā creating the āgutsā
The ābuildā group of products are these:
Authentication ā user login and identity
Realtime Database ā realtime, cloud hosted, NoSQL database
Cloud Firestore ā realtime, cloud hosted, NoSQL database
Cloud Storage ā massively scalable file storage
Cloud Functions ā āserverlessā, event driven backend
Firebase Hosting ā global web hosting
ML Kit āSDK for common ML tasks
Firebase Authentication takes care of getting your users logged in and identified. This product is essential to getting some of the other products configured properly, especially if you need to restrict access to per-user data (which nearly every app will want to do).


Top comments (0)