|
|
|
|
|
by jbjorge
1213 days ago
|
|
I used the stack on a side project. Wrote an adapter for websocket sync and a wrapper for Vue that allowed streaming queries. I really liked it, but the typical pattern of one-db-per-user with internal replication on the server was a bit difficult plan/orchestrate for shared data. I'm patiently waiting for the couchdb PR for document level access control. These days I use supabase with row level security and a Vue-wrapper that can cache queries locally and update the result as the network request finishes. Works as good as pouch + couch (but naturally comes up short for queries that rely on Date.now()) |
|