Nice to see some good discussion about PouchDB, cheers for all the thanks as well but just wanted to make sure the credit goes where its due, PouchDB is a fairly small project that I do in my (rare) spare time, but it has 55 contributors who very much make it the project it is<p><a href="https://github.com/daleharvey/pouchdb/graphs/contributors" rel="nofollow">https://github.com/daleharvey/pouchdb/graphs/contributors</a>
I'm surprised more people haven't heard of PouchDB, so good on Cloudant for donating buzz to an excellent FOSS project. And thanks again, Dale Harvey, for being a fscking genius. :)<p>My boss tells me I'll be making a whole private document management & CRM around it and CouchDB, and that's my fault for showing them to him.
Apparently Cloudant is a couch-compatible cloud-scale database. It would be nice if they mentioned this somewhere on their site, especially after having named their product PouchDB.<p>A question that remains unanswered for me is how do they go about storing the local data in the browser? Do they use local storage? Are there size limits? What's reliability like?
According to the FAQ in FF it's using IndexedDB, what's it using in Chrome/Opera/IE? LocalStorage?<p>Also, what do you do about FF's seeming need to pluralize all store names, default out-of-order keys, and clear cache issue?<p>edit for clarity
PouchDB will also sync with Couchbase Sync Gateway. We use PouchDB as part of the load-generator cluster for performance testing. <a href="http://www.couchbase.com/communities/couchbase-sync-gateway" rel="nofollow">http://www.couchbase.com/communities/couchbase-sync-gateway</a><p>There are more and more things that can sync this awesome JSON HTTP protocol. <a href="http://syncable.org/" rel="nofollow">http://syncable.org/</a><p>Thanks Dale!
I was immediately struck by the scary thing of putting the password in the URL:<p><pre><code> remote = 'https://USERNAME:PASSWORD@USERNAME.cloudant.com/DATABASE'
</code></pre>
I know HTTPS URLs are encrypted, but it still strikes me as unsafe. What does HN think?