meteor-persistent-minimongo2 icon indicating copy to clipboard operation
meteor-persistent-minimongo2 copied to clipboard

Persistent Client-side Collections for Meteor using indexedDB, webSQL or localstorage

Results 6 meteor-persistent-minimongo2 issues
Sort by recently updated
recently updated
newest added

Is this still maintained?

Can anyone tell how can I wait for the collections to load from indexDB to local collection after I run `persistentCollection.refresh(true)`?

How do I declare the Meteor.user() because declaring like this `var UserObserver = new PersistentMinimongo2(Meteor.user(), 'myMeteor'); ` is giving me an error.

I implemented some upsert like this: `if(!c.update()) c.insert()` Since the storage is not yet loaded on pageload, this will always trigger an `insert` and the ids are not collected in...

The top level error is from simple schema, however the cause is from this package, seemingly from it trying to refresh itself. But I'm unsure why this is an issue...

These work: Go offline -> update minimongo record -> go online -> server mongo record is updated, good! Go offline -> reload browser -> minimongo records are persisted, good! Go...