JavaScript Signals for Godot! Vue, Solid.js, Qwik like syntax in Godot.Make your code reactive!
Quick Information
Supabase API (4.x)
API Library to interact with your Supabase backend project.
Supported Engine Version
4.0
Version String
4.0.2
Support Level
community
Modified Date
3 years ago
Git URL
Issue URL
👉 3.x
Godot Engine - Supabase (4.x)
A lightweight addon which integrates Supabase APIs for Godot Engine out of the box.
- Authentication (/auth)
- Database (/database)
- Realtime (/realtime)
- Storage (/storage)
UI Library
A drag&drop UI Library is available at supabase-ui.
examples and demos
A collection of examples and live demos is available at fenix-hub/godot-engine.supabase-examples, both with source code and exported binaries.
how to use
A wiki is available here.
Even though it is still not complete, Classes and APIs references are always listed and updated.
code snippet
Multiple approaches!
Asynchronous
func _ready():
Supabase.auth.signed_in.connect(_on_signed_in)
Supabase.auth.sign_in(
"[email protected]",
"userpwd"
)
func _on_signed_in(user: SupabaseUser) -> void:
print(user)
Synchronous
func _ready():
var auth_task: AuthTask = await Supabase.auth.sign_in(
"[email protected]",
"userpwd"
)
print(auth_task.user)
API Library to interact with your Supabase backend project.
Reviews
0 total reviews
Quick Information
Supabase API (4.x)
API Library to interact with your Supabase backend project.
Supported Engine Version
4.0
Version String
4.0.2
Support Level
community
Modified Date
3 years ago
Git URL
Issue URL