Show HN: PouchDB - The JavaScript database that syncs
1–10 of 42 posts
Re: Show HN: PouchDB - The JavaScript database that syncs
#2Re: Show HN: PouchDB - The JavaScript database that syncs
#3I just put up this website, its ugly but working on the content, in particular I want it very easy to understand wtf it is and get started, would love to hear your feedback.
Re: Show HN: PouchDB - The JavaScript database that syncs
#4I just put up this website, its ugly but working on the content, in particular I want it very easy to understand wtf it is and get started, would love to hear your feedback.
I like the name.
Re: Show HN: PouchDB - The JavaScript database that syncs
#5I just put up this website, its ugly but working on the content, in particular I want it very easy to understand wtf it is and get started, would love to hear your feedback.
Re: Show HN: PouchDB - The JavaScript database that syncs
#6I just put up this website, its ugly but working on the content, in particular I want it very easy to understand wtf it is and get started, would love to hear your feedback.
Re: Show HN: PouchDB - The JavaScript database that syncs
#7I just put up this website, its ugly but working on the content, in particular I want it very easy to understand wtf it is and get started, would love to hear your feedback.
I especially like PouchDB-Server as a mini CouchDB replacement ( https://github.com/nick-thompson/pouchdb-server ). Congrats for implementing LevelDB into PouchDB so we can use it in Node.
The server is really exciting, we mostly built it so we can reuse CouchDBs test suite however with it being so easy to install its becoming pretty invaluable
Re: Show HN: PouchDB - The JavaScript database that syncs
#8 var db = new PouchDB('dbname');
db.put({
_id: 'dave@gmail.com',
name: 'David',
age: 66
});
db.changes({
onChange: function() {
console.log('Ch-Ch-Changes');
}
});
db.replicate.to('http://example.com/mydb');
Shouldn't you set up the event listener before "db.put()"?Re: Show HN: PouchDB - The JavaScript database that syncs
#9Re: Show HN: PouchDB - The JavaScript database that syncs
#10I just put up this website, its ugly but working on the content, in particular I want it very easy to understand wtf it is and get started, would love to hear your feedback.