jquerystorage v1.1.0
JQuery storage
JQuery storage plugin extends default HTML5 storage API to resolve cross-browser compatibility issues
Installation
npm install jquerystorage
How does it work?
JQuery storage is primarily a jQuery plugin. However, it can be used as a standalone library. It supports Webpack's modular syntax so you can use it in ES6 projects. Different ways of calling JQuery storage methods are shown below:
JQuery
$.store.<method>(...);
Standalone
commonStore.<method>(...);
Webpack
import store, { getCookie, setCookie } from 'jquerystorage';
store.<method>(...);
JQuery storage methods:
set
To set data in HTML5 storage. By default the values are stored in localStorage
.
$.store.set(key, value); // jQuery
commonStore.set(key, value); // Without jQuery
To set key in session storage (set isSession
flag to true
by passing it as a third prameter)
$.store.set(key, value[, isSession]); // Stores in session
commonStore.set(key, value[, isSession]);
If storage is unavailable, the method automatically fallbacks to cookies as alternative storage
get
To get value from storage
$.store.get(key);
commonStore.get(key); // Alternative syntax
Get method checks all the available storages to get the data. The data is automatically parsed if it is a valid JSON string.
getAll
To get data from all stores. The values are returned in a form of array of objects with information such as type of storage used.
$.store.getAll(key); // --> Returns [{ value: <data value>, storage: '<type of storage>' }, { ... }, { ... }];
update
To update the value of an existing key. It is similar to set
except that it gives you more control over how you want to update the data. We have following examples that explain how update
is different from set
.
$.store.update(key[, data or callback]);
Example 1: Updating object properties
Using set
:
$.store.set('profile', { name: "Joanne", age: 26 });
// Updating the age to 27
$.store.set('profile', { name: "Joanne", age: 27 }); // You have re-write the entire object notation
Using update
:
$.store.set('profile', { name: "Joanne", age: 26 });
// Updating profile by passing only the age
$.store.update('profile', { age: 27 }); // --> Value now becomes { name: "Joanne", age: 27 }
You can also use syntax below:
// 1. Arrow function with implicit return
$.store.update('profile', () => { age: 27 });
// 2. Arrow function with data passed as value
$.store.update('profile', data => {
data.value.age = 27; // Modify existing object
});
Example 2: Updating arrays
Using set
:
$.store.set('arr', [1,2,3,4]);
// Insert a new value to array
$.store.set('arr', [1,2,3,4,'Hello']); // <-- Inserts string 'hello'. But you need to pass the entire array in this case
Using update
:
$.store.set('arr', [1,2,3,4]);
// Insert a new value to array
$.store.update('arr', data => {
data.value.push('Hello'); // Just push a new value to existing array
});
Example 3: Updating multiple stores at once
There are chances that your data exists in multiple stores having the same key. Update allows you to modify them all at once
Using set
:
$.store.set('profile', { name: 'Joanne' });
$.store.setCookie('profile', { name: 'Adam' });
// Add age = 27 to both profiles currently stored in different stores
$.store.set('profile', { name: 'Joanne', age: 27 });
$.store.setCookie('profile', { name: 'Adam', age: 27 });
Using update
:
$.store.set('profile', { name: 'Joanne' });
$.store.setCookie('profile', { name: 'Adam' });
// Add age = 27 to both profiles currently stored in different stores
$.store.update('profile', { age: 27 }); // <-- This updates all stores at once
More complex example where we want to update different values:
Consider same example as above. This time we are inserting different ages for Joanne and Adam.
Using set
:
$.store.set('profile', { name: 'Joanne' });
$.store.setCookie('profile', { name: 'Adam' });
// Add age = 27 to both profiles currently stored in different stores
$.store.set('profile', { name: 'Joanne', age: 27 });
$.store.setCookie('profile', { name: 'Adam', age: 30 });
Using update
:
$.store.set('profile', { name: 'Joanne' });
$.store.setCookie('profile', { name: 'Adam' });
// Add age = 27 to both profiles currently stored in different stores
$.store.update('profile', (...args) => {
args.find(arg => arg.storage === 'localStorage').value.age = 27;
args.find(arg => arg.storage === 'cookie').value.age = 30;
});
Update is useful when data sets are large and you wisth to update only a small chunk.
setCookie
To create a cookie
$.store.setCookie(key, value[, expiry][, path][, domain]);
getCookie
To get cookie from cookie store
$.store.getCookie(key, value);
removeCookie
To delete a cookie from cookie store
$.store.removeCookie(key[, path][, domain]);
resetCookie
To reset an existing cookie with new data. It is similar to setCookie
except that it deletes existing cookie first.
$.store.resetCookie(key, value[, expiry][, path][, domain]);
"Reset" allows you to change expiry ,path and domain of existing cookie.
Summing up
JQuery storage provides with a robust and cross browser way to manage HTML5 storage. However, it doese not overcome certain limitations like storage size and availability (yet). If HTML5 storage is unavailable, there is a fallback of cookie storage, but we all know that cookie storage is quite limited in terms of size. It means we cannot save large chunks of data as of now.
To overcome size limitation we are working on a version 3 which introduces lossless data compression. To checkout the progress you can switch to feature/v3 branch.