FirebaseUI and Firebase, what is the difference?

前端 未结 1 1454
既然无缘
既然无缘 2021-01-05 17:16

So I\'m new to Firebase and I\'m trying to figure out if FirebaseUI and Firebase are the same thing. I have walked through the tutorial on firebase.google.com however I noti

相关标签:
1条回答
  • 2021-01-05 17:37

    Firebase is a platform that you use to build web and mobile applications. It consists of a suite of cloud services and a set of SDKs (and in some cases REST APIs) to access those services.

    FirebaseUI is a set of libraries that build on top of the Firebase SDKs to make binding to user interface elements easier.

    Specifically: FirebaseUI for Android and for iOS wrap the Database and Authentication SDKs of Firebase to make it easy to use the services in Android and iOS applications.

    FirebaseUI for web is a newer entrant to the field and only wraps the Authentication SDK. To make it easy using the database in your web app, look for a dedicated library for your preferred web platform: AngularFire, AngularFire2, ReactFire, EmberFire. The names probably speak for themselves in what web library they target.

    0 讨论(0)
提交回复
热议问题