Skip to content

Harium/supabase-java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

supabase-java

CircleCI Maven Central

An unofficial Java client for Supabase.

Features

Currently, this library has basic support to database operations and storage.

Usage

// Starting the client
SupabaseRestClient supabase = new SupabaseRestClient(YOUR_SUPABASE_URL, YOUR_SUPABASE_KEY);
// Inserting a new user to the table users
supabase.databse().insert("users", Insert.row().column("email", "user@email.com")
                                     .column("username", "user123"));

// Using storage (uploading a file)
supabase.storage().upload("mybucket/test.txt", new byte[]{1,2,3,4,5});

Not implemented yet

  • Authentication
  • ...

Releases

No releases published

Packages

No packages published

Languages