You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+45-3
Original file line number
Diff line number
Diff line change
@@ -18,9 +18,10 @@ To learn how to get started with Cloud Functions for Firebase by having a look a
18
18
This repository contains a few categories of samples:
19
19
20
20
1.[**Quickstarts**](#quickstarts) are minimal examples for each types of triggers.
21
+
1.[**Cloud Functions v2 public preview**](#v2) samples show how to use the public preview of [Cloud Functions for Firebase v2](https://firebase.google.com/docs/functions/beta).
21
22
1.[**Development Environment Samples and Boilerplates**](#environment) illustrates how to get started with
22
-
different, commonly used JavaScript development patterns such as Typescript, React SSR, ES2017 etc...
23
-
1.[**Image Processing**](#image) shows a few ways where you can process and transform images using Cloud Functions such as generating thumbnails, converting images extracting metadata...
23
+
different, commonly used JavaScript development patterns such as Typescript, React SSR, and ES2017.
24
+
1.[**Image Processing**](#image) shows a few ways you can process and transform images using Cloud Functions such as generating thumbnails, converting images extracting metadata...
24
25
1.[**Firebase Realtime Database Data Consistency**](#rtdb) shows how to implement automatic data consistency such as keeping a count of children, having a max amount of node childs, cleaning up old data etc... for your Realtime Database.
25
26
1.[**Other common usecases**](#other) a set of other common usecases for Cloud Functions.
26
27
@@ -59,6 +60,47 @@ This quickstart sample demonstrates using **Cloud Functions** triggered by **Pub
59
60
This quickstart demonstrates how to trigger a function in response to the
60
61
completion of a test matrix in **Firebase Test Lab**.
61
62
63
+
<aname="v2"></a>
64
+
## Cloud Functions v2 public preview
65
+
66
+
> Note: Cloud Functions for Firebase v2 is a public preview. This means that the functionality might change in backward-incompatible ways. A preview release is not subject to any SLA or deprecation policy and may receive limited or no support.
67
+
68
+
See [the Firebase docs](https://firebase.google.com/docs/functions/beta) for more information about the v2 public preview.
69
+
70
+
### [HTTPS: Time Server](/2nd-gen/time-server/)
71
+
72
+
A minimal HTTPS example.
73
+
74
+
### [Task Queues: Back-up images from an API](/2nd-gen/taskqueues-backup-images/)
75
+
76
+
See how to use Task Queues to meter traffic to a rate-limited API.
77
+
78
+
### [Firebase Alerts: Send crash reports to Discord](/2nd-gen/alerts-to-discord/)
79
+
80
+
Trigger a function based on a Firebase Alert, and send information about the alert to a channel in a Discord server.
81
+
82
+
### [Custom Events: Save image metadata](/2nd-gen/custom-events/)
83
+
84
+
Learn how to trigger a function based on an event sent by an extension
85
+
86
+
### [Callables: Add numbers and sanitize text](/2nd-gen/callable-functions/)
87
+
88
+
See how to write a v2 function that can easily be triggered from an app.
0 commit comments