appcache

appcache

Documentation of Meteor's `appcache` package.

The appcache package stores the static parts of a Meteor application (the client side Javascript, HTML, CSS, and images) in the browser’s application cache. To enable caching simply add the appcache package to your project.

  • Once a user has visited a Meteor application for the first time and the application has been cached, on subsequent visits the web page loads faster because the browser can load the application out of the cache without contacting the server first.

  • Hot code pushes are loaded by the browser in the background while the app continues to run. Once the new code has been fully loaded the browser is able to switch over to the new code quickly.

  • The applica