I’m building a trading platform for a client and struggling with nailing the real-time updates (not RSS Live Feed) but change in one page has to propagate to entire app (18 calculators) - per user (i.e. each user may have their own values). Am using tradeStore (zustand). I know websockets don’t work on vercel (non-edge) and Neon (serverless). Redux seems like overkill and contextAPI limiting (based on AI feasibility assessments, not done them myself). Any suggestion?
Hi @ralfiette, if I understand correctly you want to update the client side UI for a user whenever there’s a change in data on the backend. Correct?
If so, I’d advise you to look into https://www.convex.dev/ or Supabase realtime for full end-to-end realtime solution.
I’ve also used tools like Ably realtime but they add more layers of abstraction, which might be too much at an MVP level. I’d suggest building on top of a database provider.
Supabase is a drop-in replacement for Neon in terms of PostgreSQL.