npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cordova-promise-fs

v1.2.5

Published

Cordova FileSystem convienence functions that return promises.

Downloads

1,032

Readme

cordova-promise-fs

Wraps the Cordova (and Chrome) File API in convenient functions (that return a Promise)

Are you entangled in a async callback mess to get even the simplest task done? Wait no longer -- here is cordova-promise-fs!

Getting started

  # fetch code using bower
  bower install cordova-promise-fs
  bower install bluebird # a library that follows the Promise/A+ spec

  # ...or npm...
  npm install cordova-promise-fs
  npm install bluebird # a library that follows the Promise/A+ spec

  # install Cordova and plugins
  cordova platform add ios
  cordova plugin add cordova-plugin-file
  cordova plugin add cordova-plugin-file-transfer # optional

IMPORTANT: For iOS, use Cordova 3.7.0 or higher (due to a bug that affects requestFileSystem).

Or just download and include CordovaPromiseFS.js.

Usage

Initialize & configuration

var fs = CordovaPromiseFS({
  persistent: true, // or false
  storageSize: 20*1024*1024, // storage size in bytes, default 20MB
  concurrency: 3 // how many concurrent uploads/downloads?
  Promise: require('promiscuous') // Your favorite Promise/A+ library!
});

The Promise option expects a Promise library that follows the Promise/A+ spec, such as bluebird (github, download), promiscuous (github,file) or Angular's $q.

Note on concurrency: Concurrent uploads/downloads completely trash your mobile application. That's why I've put a concurrency limit on the number of downloads/uploads. Meteor sets this number on 30. In my experimental testing, I found 3 much more reasonable.

Browsing files

fs.exists(filename)       // checks if file exists. returns fileEntry or false.
fs.file(filename)         // returns a fileEntry
fs.dir(path)              // returns a dirEntry
fs.list(path,optionString)// return array with filenames (including path)

optionString = 'r'        // recursive list
optionString = 'd'        // only list directories
optionString = 'f'        // only list files
optionString = 'e'        // return results as FileEntry/DirectoryEntry (instead as path-string)
optionString = 'rfe'      // mix options! return entries of all files, recursively

Reading files

fs.read(filename)         // returns text-content of a file
fs.readJSON(filename)     // returns JSON-parsed contents of a file
fs.toUrl(filename)        // returns URL to be used in js/html/css (file://....)
fs.toInternalURL(filename)// returns cordova internal URL (cdvfile://....)
fs.toDataURL(filename)    // returns Base64 encoded Data URI

Writing files

fs.write(filename,data)   // writes a Blob, a String, or data (as JSON). Ensures directory exists.

File operations

fs.create(filename)       // creates a file
fs.ensure(path)           // ensures directory exists
fs.move(src,dest)         // move from src to dist. Ensures dest directory exists.
fs.moveDir(src,dest)
fs.copy(src,dest)         // copy from src to dist. Ensures dest directory exists.
fs.remove(src)            // removes file. Resolves even if file was already removed.
fs.remove(src,true)       // removes file. Rejects when file does not exist.
fs.removeDir(path)

Upload and download

FileTransfers with automatric retry and concurrency limit!

var promise = fs.upload(source,destination,[options],[onprogress]);
var promise = fs.upload(source,destination,[onprogress]);
var promise = fs.download(source,destination,[options],[onprogress]);
var promise = fs.download(source,destination,[onprogress]);

options.trustAllHosts
options.retry = [1000,2000,3000] // retry attemps: millisecond to wait before trying again.
// plus all normal cordova-file-transfer options

// upload/download augments the promise with two extra functions:
promise.progress(function(progressEvent){...})
promise.abort();

// Gotcha: progress and abort() are unchainable;
fs.upload(...).then(...)  // won't return the augmented promise, just an ordinary one!

Utilities

fs.fs // returns promise for the FileSystem
fs.filename(path) // converts path to filename (last part after /)
fs.dirname(path) // converts path dirname (everything except part after last /)
fs.deviceready // deviceready promise
fs.options // options
fs.isCordova // is Cordova App?

Normalized path

In CordovaPromiseFS, all filenames and paths are normalized:

  • Directories should end with a /.
  • Filenames and directories should never start with a /.
  • "./" is converted to ""
  • ".." and "." are resolved.

This allows you to concatenate normalized paths, i.e.

normalize('dir1/dir2') === normalize('dir1') + normalize('dir2') === 'dir1/dir2/';

If you're storing or saving paths, it is recommended to normalize them first to avoid comparison problems. (i.e. paths are not recognized as the same because of a missing trailing slash).

Beware: the original entry.fullPath might return a path which starts with a /. This causes problems on Android, i.e.

var path = filesystem.root.fullPath; // returns something starting with a `/`
filesystem.root.getDirectory(path); // NullPointer error in android. Stupid!

This problem is solved in CordovaPromiseFS.

Changelog

1.2.5 (05/05/2017)

  • Added Crosswalk
  • Bugfix: list will return more than 100 entries

1.1.0 (05/05/2016)

  • Fixed bug: download/upload support for different Cordova FileSystems.

1.0.0 (07/02/2016)

  • Fixed bug in list function, thanks @sebastian-greco
  • Improved code readability of transfer, thanks @youjenli
  • There is no this, thanks @m0ppers
  • Accept string as FileSystem, thanks @dortzur
  • Normalize ".." in paths, thanks @starquake

0.13.0 (16/09/2015)

  • Merged pull request from @Ijzerenhein. Fixed Chrome Persistent storage quota issue and added directory methods.

0.12.0 (17/03/2015)

  • Merged pull request from @jakgra. Now you can write to hidden folders on Android. Thanks!

0.11.0 (17/03/2015)

  • Minor improvements in upload

0.10.0 (21/12/2014)

  • Support for other fileSystems (undocumented hack)

0.9.0 (28/11/2014)

  • Normalize path everywhere.

0.8.0 (27/11/2014)

  • Added test-suite, fixed few minor bugs.

0.7.0 (14/11/2014)

  • bugfix toInternalURL functions and fix download argument order

0.6.0 (13/11/2014)

  • Chrome Support!

0.5.0 (06/11/2014)

  • Use webpack for the build proces
  • Fixed many small bugs

0.4.0 (06/11/2014)

  • Various small changes
  • Added CordovaPromiseFS.js for everybody who does not use Browserify/Webpack

0.3.0 (05/11/2014)

  • Added list options (list recursively, only files, only directories, return result as entries)

0.2.0 (05/11/2014)

  • Added upload and download methods with concurrency limit

Contribute

Convert CommonJS to a browser-version:

npm install webpack -g
npm run-script prepublish

Run tests: Navigate to /test/index.html, for example:

npm install static -g
static .
# http://localhost:8080/test/index.html

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