Cloud Functions for Firebase
Run backend code without managing servers
A serverless framework that lets you automatically run backend code in response to events triggered by background events, HTTPS requests, the Admin SDK, or Cloud Scheduler jobs.
开发不需要服务器的后端
Create functions that are triggered by Firebase products, such as changes to data in the Realtime Database, new user sign-ups via Auth, and conversion events in Google Analytics. Are you a Google Cloud developer? See Google Cloud Functions.

无需管理服务器即可运行您的移动后端代码
Cloud Functions are single-purpose JavaScript and Python functions that are executed in a secure, managed serverless environment. They are only executed when a specific event being watched is emitted.
轻松维护
Deploying your code to our servers requires just one command. After that, Cloud Functions automatically scales up computing resources to match the usage patterns of your app. You never have to worry about SSH credentials, server configuration, provisioning new servers, or decommissioning old ones.


确保逻辑的私密性和安全性
在很多情况下,为了避免客户端篡改,在服务器上控制应用逻辑是最佳做法。Cloud Functions 与客户端完全隔离,因此您可以确信它的函数是私密且安全的,并且不会被逆向工程破解。