Introduction to Cloud Functions
Get a brief introduction to Cloud Functions for Firebase.
We'll cover the following...
Cloud Functions for Firebase is a Google Cloud product that lets us automatically run back-end code in response to events triggered either by other Firebase services or by HTTPS requests. With Cloud Functions, we can easily run server-side code without the need to set up a server. Some possible examples of this server-side code include adding roles to users, reacting to changes in a database, or notifying the user when something interesting—such as sending a welcome email when a user signs up—happens. These are events we typically won’t want to run on the client side. Therefore, a perfect use case for Cloud Functions. With the Admin SDK, we can seamlessly interact with other ...