There is a modern responsive listener for changing the database

Is there a modern React listener library for modifying the database? We need to implement some kind of real-time communication with the database and be able to propagate database changes to our customers. I've heard about SignalR (ASP.NET only?) But it seems like Websockects could be the technology.

+3


source to share


1 answer


If you want to tailor your persistence tier, you can achieve automatic synchronization of DB-> Web with Firebase Realtime database:

https://firebase.google.com/docs/database/



It doesn't depend on the specific reaction, but the technologies work great together (used them together ourselves). The Javascript client uses Web sites behind the scenes.

+1


source







All Articles