Is there a template or framework for a Shiny database CRUD app that makes reactivity as simple as possible:
- input fields
- database key (a set of fields like name & date)
- backend cloud db
- when key changes, retrieve by key —> populate UI
- when user presses Save button —> update db from input collection (data elements only)
I’ve hacked my own version but wanted to know if there is a “canonical form” of Shiny app that keeps the UI and database in sync. (I happen to be using MongoDB and JSON but it could be any db, any structure.)
The Shiny documentation is fragmented and I haven't seen a simple framework for this.