Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
superstore
Advanced tools
Superstore is a simple lightweight asynchronous wrapper around the Web Storage APIs localStorage and sessionStorage. Its features include:
If you require an synchronous version please use superstore-sync instead.
JSON.stringify
on #set and JSON.parse
on #get for you.npm install superstore --save
bower superstore --save
Superstore is an instantiable module. All Superstore methods return a Promise which will resolve with the stored value. Its methods are:
var localStore = new Superstore('local', 'foo');
var sessionStore = new Superstore('session', 'bar');
returns a boolean set to true if data is being persisted to storage, or false if it is being kept in memory (e.g. if localStorage is full or inaccessible).
var Superstore = require('superstore');
var store = new Superstore('local', 'foo');
store.get('bar').then(function(value){
// Do something with value
});
FAQs
Local storage, without the bugs, and an asynchronous API
We found that superstore demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.