functions-framework-dart
functions-framework-dart copied to clipboard
FaaS (Function as a service) framework for writing portable Dart functions
Hi, This looks great, I'm currently using `firebase_functions_interop` on 3 production projects but as it seems that project has become unmaintained I need an alternative. I don't believe firebase functions...
Awesome project! I'm really impress, I'm looking something like this around 3 years. I'll try to use this package in a large production project. But I'm have some questions: -...
CORS support
If a request comes from a script running under a different origin (for our purposes here, a [tuple](https://html.spec.whatwg.org/multipage/origin.html#concept-origin-tuple) that includes a host and port) from the origin that is hosting...
Hi, I'm moving over some of my Pub Sub endpoints to `functions_framework` (from `firebase_functions_interop`), I've just started with the package so still finding my way around. I've seen support for...
Obvious feature request. Hope to see it as soon as possible.
I've setup this project https://github.com/subfuzion/dart-flutter-fullstack-demo Works great with macOS desktop, running the backend locally and on Google Cloud Run. When I try with Flutter Web, both local and on Google...
* feat: Exposes `autoCompress` via `serve` so it can be passed to the created server * feat: Exposes a `customMiddleware` attribute via `serve` for CORS support * fix: Fixed `fullstack/frontend`...
I just tried creating a project with dartfn, and I can't get the generated code to pass its included tests: ``` ~/source/hellow> dartfn generate helloworld project: hellow Creating helloworld application...
I'm using `GetIt` for dependency injection. Is there a prepare/initialise method I could hook in to configure the DI or should I do this in the function body of each...