Member-only story
Supabase Edge Functions in Dart
10 min readMay 22, 2023
Supabase Edge Functions in Dart
We will cover briefly:
- Setting up Supabase
- Create an Edge Function using Dart
- Deploying and consuming the endpoint
Setting up Supabase
Before diving into Supabase, let’s provide an introduction to what Supabase is.
Supabase is an open-source alternative to Firebase that provides a set of backend services, including authentication, database, and storage.
Supabase offers some features like
- Auth service: for user authentication.
- Database service: standard PostgreSQL.
- Realtime service: sending messages and states to clients.
- Edge functions: Running server-side TypeScript functions, distributed globally at the edge
- Storage service: Storing and serving files.