supabase / postgrest-dart

Dart client for PostgREST
https://supabase.com
MIT License
136 stars 38 forks source link

data streaming notifications on database changes. #9

Closed formvoltron closed 4 years ago

formvoltron commented 4 years ago

I thought Supabase was meant to be a 'host it yourself' Firebase replacement. Which sounds great.

Only this library doesn't seem to have any of that functionality. At least there is no such features shown in the example code or the first page github docs.

kiwicopple commented 4 years ago

Hey @formvoltron thanks for your question. This library is just one small part of a larger system. Check out the "How it works" here: https://github.com/supabase/supabase#how-it-works

Each part of Supabase can be hosted and in the future we will create scripts to deploy all the infrastructure yourself.

I'll close this one now, but feel free to re-open it if you have more questions (or ask in our Q&A Discussions: https://github.com/supabase/supabase/discussions)

awalias commented 4 years ago

specifically on dart -

this repo is just the CRUD component of what will be a larger lib called supabase-dart

image

what you're looking for is realtime-dart which has not yet been implemented

we do have a javascript version (https://github.com/supabase/realtime-js , which is also wrapped as part of https://github.com/supabase/supabase-js) and also a python version (https://github.com/supabase/realtime-py) for the time being in case you find them useful

Sun3 commented 4 years ago

Looking forward to the realtime subscriptions for Dart.

formvoltron commented 4 years ago

Aha. So I wasn't going crazy. Yes the real-time stuff is what we want in dart land.

Sockets and streaming events? How hard can it be?

On Sun, Oct 11, 2020, 07:47 Sun notifications@github.com wrote:

Looking forward to the realtime subscriptions for Dart.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/supabase/postgrest-dart/issues/9#issuecomment-706654147, or unsubscribe https://github.com/notifications/unsubscribe-auth/AADE3FB5AJK2W67YLLOJ453SKFBHNANCNFSM4SDXONQQ .

phamhieu commented 4 years ago

Hi @formvoltron, good news I already start working on realtime-dart package. I will let you know when it's ready.