PouchDB might be of interest - https://pouchdb.com/ - "PouchDB was created to help web developers build applications that work as well offline as they do online. - Source: Reddit / about 1 month ago
PouchDB: this is a wrapper around IndexedDB and WebSQL which is compatible with your backend CouchDB setup. - Source: dev.to / about 1 month ago
PouchDB is a JavaScript database usable on both the browser and server, heavily inspired by CouchDB. It's a powerful database already thanks to a great API, but its ability to sync with one or more databases makes it a no-brainer for offline capable apps. By enabling PouchDB to sync with CouchDB, we can focus on writing data directly in PouchDB and it will take care of syncing that data with CouchDB, eventually.... - Source: dev.to / 7 months ago
I'm not going to go into whether you should or shouldn't do that, it completely depends on your use case. Now, on how to do it - you can't use SQLite in a web app. Your best bet is indexeddb, which is very well suported https://caniuse.com/indexeddb or WebSQL, which is less-so https://caniuse.com/?search=websql or perhaps something like https://pouchdb.com/. - Source: Reddit / 9 months ago
The Viewer. It serves a PDF viewer which is built on top of the Mozilla PDF.js library. Another component is the PouchDB library, which we use to store annotations locally. - Source: dev.to / 9 months ago
You should try nosql but instead of Mongooose I'd suggest going against the grain a bit and look at PouchDB. - Source: Reddit / 10 months ago
I would definitely hone in on React if that is your choice of frameworks. Nodejs is a good choice for server side as well. If you're looking to stay purely js, I saw https://pouchdb.com/. - Source: Reddit / 11 months ago
For data storage / syncing I plan to use RTK for app state (auth, ui, note edits) and possibly PouchDB for persistent local state and built-in syncing to a CouchDB server. My other option would be to just persist local data with SQLite, and roll my own logic to sync that to an SQL server. - Source: Reddit / about 1 year ago
Yes, a similar and more popular solution like this is PouchDB, and looking at the example of the library this is a wrapper over PouchDB. Looking at stars for PouchDB on GitHub (14k) it really popular solution. And RxDB just adds the Reactive part. - Source: Reddit / about 1 year ago
It sounds like a database that both exists in the cloud and locally on your device. Which sounds useful! But then, PouchDB already exists: https://pouchdb.com/. - Source: Hacker News / over 1 year ago
A bit offtrack - does anybody know how rxdb differs from PouchDB? https://pouchdb.com. - Source: Hacker News / over 1 year ago
So I am building a project using databases called CouchDB & PouchDB. I have talked them first here where PouchDB was giving me trouble, it turned out be me not knowing my javascript good enough. 🙈. - Source: dev.to / almost 2 years ago
I am using CouchDB & PouchDB for one of my projects. - Source: dev.to / almost 2 years ago
Maybe you can try CouchDB alongside with PouchDB integration on client side? This page contains a comparison between them. - Source: Reddit / almost 2 years ago
Personally, I prefer using CouchDB for server side storage and PouchDB.js on the client side because you can start making your app and storing your data with just PouchDB and run it entirely in your web browser. - Source: Reddit / almost 2 years ago
Not SQL, but https://pouchdb.com/ looks like a better version of this. Also not SQL, IndexedDB [0] Seems like a well-supported [1] document database built into the browser would beat LocalStorage in almost every way. That's what I've found in my experience at least. Maybe SQL just isn't the right tool on either the frontend or the backend? [0] https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_A... [1]... - Source: Hacker News / almost 2 years ago
IndexedDB API is low-level and may seem a bit daunting to use to some. For this reason, libraries such as localForage, dexie.js, ZangoDB, PouchDB, idb, idb-keyval, JsStore and lovefield provide a simpler API that makes IndexedDB more programmer-friendly. - Source: dev.to / about 2 years ago
Do you know an article comparing PouchDB to other products?
Suggest a link to a post with product alternatives.