Cloud Functions


Cloud Functions

  • What it is: A Serverless "Functions as a Service" (FaaS) product. You write a single snippet of code (a function) that runs only when triggered by an event (like a file upload or an HTTP request). You don't manage any servers, and you pay only for the milliseconds the code runs.

  • Equivalents:

    • AWS: AWS Lambda

    • Azure: Azure Functions


Last updated