firebase_functions 0.6.0
firebase_functions: ^0.6.0 copied to clipboard
Cloud Functions for Dart with support for the Firebase Admin SDK, Cloud Storage and Firestore
Dart Firebase SDK for Cloud Functions #
The firebase_functions package provides an SDK for defining Cloud Functions for Firebase in Dart.
Cloud Functions is a hosted, private, and scalable environment where you can run code. The Firebase SDK for Cloud Functions integrates the Firebase platform by letting you write code that responds to events and invokes functionality exposed by other Firebase features.
Learn more #
Learn more about the Firebase SDK for Cloud Functions in the Firebase documentation or check out our samples.
Here are some resources to get help:
- Start with the quickstart
- Go through the guides
- Read the full API reference
- Browse some examples
- Learn how to configure your application
- Codelabs
If the official documentation doesn't help, try asking through our official support channels.
Usage #
import 'package:firebase_functions/firebase_functions.dart';
void main(List<String> args) {
runFunctions((firebase) {
firebase.https.onRequest(
name: 'hello',
(request) async {
return Response.ok('Hello from Dart!');
},
);
});
}
Status: Experimental #
This package provides a Dart implementation of Firebase Cloud Functions. Only HTTPS triggers are currently supported in production. Other trigger types are experimental and have varying levels of support.