gr2m / milestones

A GitHub backed Milestone thingy
http://gr2m.github.io/milestones/
69 stars 14 forks source link

PouchDB Plugin: pouchdb-hoodie-store #56

Closed gr2m closed 8 years ago

gr2m commented 9 years ago

This task is ready to be worked on, (new) contributors very welcome <3 https://github.com/hoodiehq/pouchdb-hoodie-store


depends on PouchDB. Combines APIs of:

Is specifically meant to mirror a local database to a remote one.

store = new Store('mydb', { remote: 'http://localhost:5984/mydb' })

// alternatively: 
// Store.defaults({remoteBaseUrl: 'http://localhost:5984' })
// store = new Store('mydb')

store.add({}) // will persist object locally in "mydb"
store.sync() // will create database at http://localhost:5984/mydb
gr2m commented 8 years ago

I'd say that is done ^5 https://github.com/hoodiehq/pouchdb-hoodie-store I've created a separate issue for the scoped store api #50