
Research
SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.
@webcored/react-local-storage
Advanced tools
A stateful react hook for browser storage.
component.jsx
const [user, userStorage] = useLocalStorage('user');
....
userStorage.update(...user, { name: 'new name' });
const [user, userStorage] = useLocalStorage<User>('user');
....
userStorage.update(...user, { name: 'new name' });
| javascript |
|---|
app.js
import React from 'react';
import { user } from './storages/user';
import { localStorageConfig } from "react-local-storage/config";
localStorageConfig({
namespace: 'app',
delimiter: '/'
react: React
storages: {
user
}
})
| config | default | optional | description |
|---|---|---|---|
| namespace | null | true | namespace your storage keys to avoid conflicts especially in the case micro-frontends. |
| delimiter | / | true | delimiter between the namespace and keys, example if namespace is app then key of user will be app/user |
| react | null | false | react-local-storage uses useState hook internally which will be abstracted from the given react instance. |
| storage | window.localStorage | true | choose between local or session storage |
| storages | null | true | storage keys config & definition object |
Each and every key can have its own configuration
Configure default values to the localstorage key
const user = {
defaults: {
name: 'Guest',
email: 'guest@email.com'
}
}
import { ReactLocalStorage } from "react-local-storage";
const user = ReactLocalStorage<User> {
defaults: {
name: 'Guest',
email: 'guest@email.com'
}
}
If there is a schema change in the local storage or in the default value, the storage can be simply migrated to the latest version by incrementing the version of a key. It will trigger the migrationcallback when there is a diff with version.
const user = {
defaults: {
name: 'Guest',
email: 'guest@email.com',
avatar: 'example.com/guest.png'
},
version: 2,
migration: (currentValue, defaultValue) {
return Object.assign({}, ...currentValue, ...defaultValue);
}
}
import { ReactLocalStorage } from "react-local-storage";
const user = ReactLocalStorage<User> {
defaults: {
name: 'Guest',
email: 'guest@email.com',
avatar: 'example.com/guest.png'
},
version: 2,
migration: (currentValue, defaultValue) {
return Object.assign({}, ...currentValue, ...defaultValue);
}
}
FAQs
A stateful react hook for browser storage
We found that @webcored/react-local-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.

Research
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.

Company News
Socket is proud to join the OpenJS Foundation as a Silver Member, deepening our commitment to the long-term health and security of the JavaScript ecosystem.

Security News
npm now links to Socket's security analysis on every package page. Here's what you'll find when you click through.