
Security News
Feross on the 10 Minutes or Less Podcast: Nobody Reads the Code
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.
joose-storage
Advanced tools
A lightweight, minimal storage helper with a few varieties of approach. Part of the joose component library
A lightweight, minimal storage helper with a few varieties of approach. This component belongs to the Joose component library, but can be used completely independently.
Please see joose for the whole component library.
To install this component independently using bower use the following command:
bower install joose-storage
To install this component independently using npm use the following command:
npm install joose-storage
Simply add the JavaScript onto your page either using a script tag or concatenating with your own JavaScript and you are good to go using the joose.storage object.
Current methods:
Cookie Handling
Get a cookie value
joose.storage.getCookie(elem, class);
Set a cookie value
joose.storage.setCookie(name, value, expiresInDays, path);
Remove a cookie
joose.storage.removeCookie(name);
SessionStorage Handling
Get a sessionStorage value
joose.storage.getSessionStorage(name);
Set a sessionStorage value
joose.storage.setSessionStorage(name, value);
Remove a sessionStorage item
joose.storage.removeSessionStorage(name);
LocalStorage Handling
Get a localStorage value
joose.storage.getLocalStorage(name);
Set a localStorage value
joose.storage.setLocalStorage(name, value);
Remove a localStorage item
joose.storage.removeLocalStorage(name);
Extra helper methods useful for dynamic / easily changed storage methods
Get a value from any type of storage (must be specified)
joose.storage.getStorageValue(type, name);
Set a cookie value to any type of storage (must be specified)
joose.storage.setStorageValue(type, name, value);
Remove an item from any type of storage (must be specified)
joose.storage.removeStorageValue(type, name);
Handle any type of action with any type of storage (both must be specified)
joose.storage.handle(action, type, name, value);
The helper methods are mainly for if you want the flexibility of changing your storage type with ease; I have seen a lot of rework needed before across a project.
FAQs
A lightweight, minimal storage helper with a few varieties of approach. Part of the joose component library
We found that joose-storage demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.

Research
/Security News
Campaign of 108 extensions harvests identities, steals sessions, and adds backdoors to browsers, all tied to the same C2 infrastructure.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.