Does Meteor-JS support offline storage/cache?
From what I'm reading: https://guide.meteor.com/collections.html :
Instead, on the client, a collection is a client side cache of the database. This is achieved thanks to the Minimongo library—an in-memory, all JS, implementation of the MongoDB API.
The in-memory part seems to negate working offline. Am I wrong?
EDIT: By "offline" I mean as many as possible of those qualities:
- load the app even without internet connection, showing user's data
- make edits offline, sync them later, even if offline for e.g. hours
- when loading the app while offline, the not-yet-synced edits should also show up
EDIT2: I guess the proper term would be offline-first