All Versions
7
Latest Version
Avg Release Cycle
178 days
Latest Release
3364 days ago

Changelog History

  • v0.5.2 Changes

    February 07, 2015

    ๐Ÿš€ This is a maintenance release which has been tested as working with the latest version of RSVP (3.0.16).

  • v0.5.1

    August 16, 2014
  • v0.5.0 Changes

    July 08, 2014

    ๐Ÿš€ This is a minor release where a number of dependencies have been updated. New additions to the Basket.js API include skipCache, which prevents storing scipts in cache. The feature can be useful when you want load scripts in order, but only cache some. Here's an example:

    basket.require({ url: 'require.js' },{ url: 'require.config.js', skipCache: true },{ url: 'libs.js' });
    

    In the above, multiple scripts will be requested and then cached however require.config.js will not be cached in localStorage.

    ๐Ÿš€ Special thanks go to @sindresorhus @itsuryev and @wibblymat for their help with this release.

    ๐Ÿ‘€ For the complete changelog see: v0.4.0...v0.5.0

    ๐Ÿš€ As per our last release, we continue to look forward to the ServiceWorker Cache API eventually being more useful for some of our use-cases. A very early Cache API polyfill was demonstrated working as part of the Polymer Topeka app at Google I/O and we look forward to exploring async solutions using IndexedDB as a backing store in the future.

  • v0.4.0 Changes

    January 07, 2014

    The State Of LocalStorage As A Cache

    A while back, we released Basket.js - a promise-based script and resource loader for caching reasonably sized assets in LocalStorage for future loading and execution. LocalStorage caching was a technique leveraged by large sites such as GMail and Bing and continues to be used in some projects today. For example, controlled tests by Wikipedia suggested storage of their JS modules reduced page load times by an average of 156ms. It's really not quite as clear-cut as that, though.

    ๐ŸŽ LocalStorage is known to be synchronous and thus blocks the renderer main thread while the browser loads LocalStorage into memory, affecting initial page load. Although solutions like Basket.js have been leveraged due to deficiencies in the current browser story around offline (and appcache), great care does need to be taken when using them. LocalStorage isn't exactly slow for small-medium sized DBs, but is for large LocalStorage DBs. The take away here is: if you care about jank on initial load, don't use LocalStorage as a very large resource cache - it's primarily useful for smaller content.

    ๐Ÿšš Thankfully, to date there's been plenty of exciting work done on solutions like the Caching API in SeviceWorker which will help ease this pain and hopefully remove the need for libraries that try working around the HTTP cache in the future. There's also work underway to create a Node-based ServiceWorker polyfill, which should be exciting to try out.

    ๐Ÿš€ Release notes

    ๐Ÿ‘€ While we wait for ServiceWorker, the Basket.js team are working on integrating support for asynchronous storage systems like IndexedDB (see async-local-storage for an example of how this may be done) and the FileSystem API. That said, a number of new features have been introduced in 0.3.1 that might be of interest :)

    ๐Ÿ†• New features

    • ๐Ÿ‘€ Basket now supports custom handlers for resources other than JavaScript - e.g CSS, Text. See lower down for an example.
    • โœ… Scripts begin loading immediately when you call thenRequire
    • Now supports a live option for caching the result, but always fetching live. It's for use by web apps that may be offline. In the example of a Twitter client, let's say that in the morning I go fetch your tweets while online. Later on I'm on the tube and go back to get your tweets. I can't get a live version, but I can get it from the cache and show a message letting the user know that the data is not fresh.
    • ๐Ÿ‘Œ Improved project unit tests
    • ๐Ÿ‘Œ Supports RSVP 3.0.1, bumped dependencies for grunt tasks

    Some examples:

    Different types can be handled using custom handlers:

    // Add a custom handler for files of type text/plainbasket.addHandler( 'text/plain', function( obj ) {console.assert(obj.data === text, 'The text/plain handler was used');// Do some stuff..// Remove the custom handlerbasket.removeHandler( 'text/plain' );});// Requiring a text file is now possiblebasket.require({ url: '/example.txt' });
    

    live: false - nothing in the cache so we fetch from the network:

    basket.require({ url: '/example.txt', execute: false, live: false }).then( function() {// ...});
    

    live: true - attempt to fetch from the network first:

    basket.require({ url: '/example.txt', execute: false, live: true }).then( function() {// ...});
    

    Immediately loading and chaining with thenRequire:

    basket.require({ url: 'scriptA.js', key: 'first' }).thenRequire({ url: 'scriptB.js', key: 'second' }).then(function() {// first script loaded// second script loaded// scripts loaded in correct order// basket.order === 'firstsecond'});
    

    ๐Ÿš€ This release would not have been possible without all of the ace work by Mat Scales and Sindre Sorhus so big kudos to them both for their help!

  • v0.3.1-pre.1 Changes

    January 05, 2014
    • ๐Ÿ‘Œ Improved unit testing
    • ๐Ÿ‘ Working towards more recent RSVP support
    • ๐ŸŽ‰ Initial work for improved resource handling
  • v0.3.0

    December 22, 2012
  • v0.2

    March 09, 2012