Dart Edge
Dart Edge, a project built and maintained by Invertase, enables Dart code to be run on different edge environments. This guide will walk you through how you can start using Dart Edge to write your backend code using Dart and run it on Supabase.
Dart Edge is an experimental project - it's probably not ready for production usage unless you're okay with living on the 'edge'. Open issues on Dart Edge repo if you encounter any issues.
Prerequisites
Make sure you have the edge CLI installed in addition to the Supabase CLI.
Setting up your first Dart Edge project
Create a new Dart Edge project using the new
command on the edge CLI. This will create a familiar boilerplate for your Dart Edge project such as main.dart
and pubspec.yaml
file.
cd
into the project and initialize a new Supabase project inside the project you just created.
Run pub get
to install the dependencies.
Open the lib/main.dart
and look at the initial template.
SupabaseFunctions
class has a fetch
handler, which is expected to return a Response
object, and has a request
parameter, which contains information about the request such as body and headers.
Supporting multiple edge functions
By default, Dart Edge will create a single main.dart
file in your project, which will be compiled into a function called dart_edge
.
You can override this behavior and create multiple functions by creating an edge.yaml
file in the root of your project.
Specify how to map which of your dart files should compile to what Supabase edge functions using the functions
option.
Using Supabase client
Now let’s try to interact with our Supabase database. We will start by installing the dependencies.
Add dependencies
Add supabase
to interact with Supabase service.
We also need to use a special HTTP client to HTTP requests in the edge environment.
Initialize SupabaseClient
At this point, you can initialize a SupabaseClient
by passing the EdgeHttpClient. We can access the Supabase credentials through the environment variables using Deno.env.get()
method. Note that Supabase credentials are available by default, so no configurations are necessary.
Now we have the following sample functions code to query Supabase database using the Supabase client.
Run the Functions
Run locally
Create a edge.yaml
file if you don't have one yet in the root of your project. Then, add the following configuration to specify the path to your Supabase project.
Also, currently Dart Edge doesn't work with the latest versions of Flutter. If you do have the latest version of Flutter on your machine, you can use Flutter Version Management (FVM) to use an older version of Flutter for your Dart Edge project.
You can read more about how to configure FVM for your project in the FVM documentation.
Run the following command to compile your Dart code. This command will start a watcher that will recompile anytime you make changes to your code.
With docker running, start your local Supabase with the following command
While you have the above code running, open another terminal and run the following to start the Supabase local development environment.
You should be able to access your local function here:
http://localhost:54321/functions/v1/dart_edge
Deploy to the Edge
Run the following commands to compile and deploy your function on Supabase Edge functions.
You will be asked to provide the project reference of your Supabase instance to which you want to deploy the function. You can link your local project to your Supabase instance to avoid having to provide the Supabase reference every time you deploy.