Tag Archives: library

localForage

localForage is a javascript library made by Mozilla that abstracts away the differences between IndexedDB, WebSQL and localStorage and it automatically selects the best available storage option. It does mean that you’ll endup with a key/value store but it will be async and fast. Check out the project on GitHub.

Resumable.JS

Resumable.JS Introduces fault-tolerance into the upload of large files over HTTP by splitting each file into small chunks that can be re-sent. Additionally, it allows for users to pause, resume and even recover uploads without losing state.