Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 965 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 965 Bytes

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
  • ...