Is it possible to launch a meteor application offline

Can a meteorite application run offline when the connection to the server is not activated, for example, from the html5 application cache in the browser.

Or save to offline folder.

Of course, there is no data distribution to the server, but perhaps some local cache.

EDIT: how about saving events to local storage when offline?

+4
source share
3 answers

Yes, theoretically this should be doable by creating an HTML5 cache manifest. I asked about it here:

How to add cache manifest to Meteor app?

0
source

I had the same request. It is worth looking at saving your data offline: -

https://github.com/awwx/meteor-offline-data

0
source

Meteor has an appcache package (check documents) and it is currently used in the documents themselves.

0
source

Source: https://habr.com/ru/post/1413772/


All Articles