Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cordova-file-cache

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cordova-file-cache

Cordova File Cache

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
25
increased by47.06%
Maintainers
1
Weekly downloads
 
Created
Source

cordova-file-cache

Super Awesome File Cache for Cordova Apps

Getting started

  # fetch code using bower
  bower install cordova-file-cache cordova-promise-fs
  # ...or npm...
  npm install cordova-file-cache cordova-promise-fs
  # or just download and include the javascript
  curl https://raw.githubusercontent.com/markmarijnissen/cordova-promise-fs/master/CordovaPromiseFS.js
  curl https://raw.githubusercontent.com/markmarijnissen/cordova-file-cache/master/CordovaFileCache.js

  # install Cordova plugins
  cordova plugin add org.apache.cordova.file
  cordova plugin add org.apache.cordova.file-transfer # optional

Usage

Initialize & configuration

// Initialize a Cache
var cache = CordovaFileCache({
  fs: CordovaPromiseFS(),
  mode: 'hash', // or 'mirror'
  localRoot: 'data',
  serverRoot: 'http://yourserver.com/files/' // optional, required on 'mirror' mode
});

cache.ready.then(function(list){
    // Promise when cache is ready.
    // Returns a list of paths on the FileSystem that are cached.
}) 
  • mode: "mirror": Mirrors the file structure from serverRoot at localRoot.
  • mode: "hash": Filename is hash of server url (plus extension).
  • CordovaPromiseFS() is an instance of cordova-promise-fs.

Add files to the cache


// First, add files
cache.add('http://yourserver.com/folder/photo1.jpg')
cache.add('folder/photo2.jpg')  // automatically prepends the `severRoot`
cache.add(['photo3.jpg','photo4.jpg'])

// Now the cache is dirty: It needs to download.
cache.isDirty() === true
// cache.add also returns if the cache is dirty.
var dirty = cache.add(['photo3.jpg']) 

// Download files. 
cache.download(onprogress).then(function(cache){ ... },function(failedDownloads) { ... }) 
// It is recommended to avoid heavy UI and animation while downloading.
// The optional 'onprogress' event handler is enhanced with information
// about the total download queue:
onprogress = function(ProgressEvent) {
  ProgressEvent.index // current download index
  ProgressEvent.total // total files to download
}

Use the cache

// Get the cached internalURL of the file: "cdvfile://localhost/persisent/cache/photo3.jpg" 
cache.get('photo3.jpg');           
cache.toInternalURL('photo3.jpg'); 
cache.toInternalURL('http://yourserver.com/photo3.jpg'); 

// Get the file URL of the file: "file://.../photo3.jpg";
cache.toURL('photo3.jpg');

// When file is not cached, the original input is returned as a fallback.
cache.get('http://yoursever.com/never-cached-this.jpg') === 'http://yoursever.com/never-cached-this.jpg'

// Get Base64 encoded data URL.
cache.toDataURL('photo3.jpg').then(function(base64){},function(err){});

Other functions

// Abort all downloads
cache.abort()

// Clear cache (removes localRoot directory)
cache.clear().then( ... )

// Or remove a single file
cache.remove('photo3.jpg').then( ... )

// Returns path on Cordova Filesystem, i.e. "/cache/photo3.jpg"
cache.toPath('photo3.jpg');      

// Returns server URL to download, i.e. "http://yourserver.com/photo3.jpg";
cache.toServerURL('photo3.jpg'); 

// Needs a download?
cache.isDirty(); 

// Returns a list of server URLs that need to be downloaded.
cache.getDownloadQueue();        

 // Return a list of paths that are cached (i.e. ["/cache/photo3.jpg"])
cache.list().then(function(list){...},function(err){...}) 

Changelog

0.1.0 (06/11/2014)

Contribute

Convert CommonJS to a browser-version:

npm install gluejs -g
npm run-script prepublish

Feel free to contribute to this project in any way. The easiest way to support this project is by giving it a star.

Contact

© 2014 - Mark Marijnissen

Keywords

FAQs

Package last updated on 07 Nov 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc