
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Easy save state management using browser localStorage
or sessionStorage
and React Hooks.
localStorage
and sessionStorage
🎣sessionStorage
is an underrepresented feature as most libraries don't support using either API interchangeably. Storing data to the session is more secure, and is perfectly suitable for many use-cases. Learn about the difference on MDN!
Install with NPM or Yarn:
npm install --save haversack
yarn add haversack
Haversack exports the two following React hooks, depending on whether you want to use localStorage
or sessionStorage
:
import { useLocalStorage, useSessionStorage } from 'haversack';
Each hook returns an object with the current stored value and a function to update the stored value.
function MyComponent() {
const { value, setValue } = useLocalStorage('myKey');
useEffect(() => {
// update the stored value after mount
setValue('updatedValue');
}, []);
return <div>The stored value is {value}</div>;
}
By passing a TypeScript type to the hook, you can enforce a consistent typing for the stored value.
function MyComponent() {
const { value, setValue } = useLocalStorage<string>(
'myKey',
);
useEffect(() => {
setValue('updatedValue'); // TS is happy 👍
setValue(5); // TS is unhappy 👎
}, []);
return <div>The stored value is {value}</div>;
}
You can pass an optional default value to the hook. This value will be returned if setValue
has not been called yet.
function MyComponent() {
const defaultValue = 'bar';
const { value } = useLocalStorage('foo', defaultValue);
return (
<div>
The stored value is {value}, but is {defaultValue} by default
</div>
);
}
See notes on SSR compatibility for the server-side behavior of the default value.
To remove the value from storage, call the resetValue
function. This will return the value to the default if supplied or undefined
if not.
function MyComponent() {
const { value, resetValue } = useLocalStorage('myKey');
return <button onClick={resetValue}>Reset value</button>;
}
A unique feature of the library is the ability to manage an immutable store that you can easily merge with updated values.
interface Settings {
name: string;
currentHp: number;
spells?: string[];
}
function MyComponent() {
const {
value: settings,
setValue: writeSettings,
mergeState: updateSettings
} = useLocalStorage<Settings>(
'appSettings',
);
useEffect(() => {
// set the initial state
writeSettings({
name: 'Jan Darkmagic',
currentHP: 12,
});
}, []);
const fullRest = () => {
// will not affect the `name` setting
updateSettings({
currentHP: 34, // updates existing field
spells: ['Burning Hands', 'Charm Person'], // adds new field
});
}
return (
<>
<div>User name: {settings.name}</div>
<button onClick={() => fullRest()}>
Full rest
</button>
</>
);
}
The hooks always return a timestamp
of when the stored value was most recently updated as a JavaScript Date
object.
function MyComponent() {
const { value, timestamp } = useLocalStorage('myKey');
return (
<>
<div>The stored value is {value}</div>
<div>It was updated at: {timestamp.toString()}</div>
</>
);
}
Obviously browser storage APIs are not functional on the server, and this library is not designed to persist data between the two sources. However, Haversack is built to be friendly with server-side rendered environments including Next.js. If you try to access a stored value on the server, it will return the default value or undefined
if a default is not specified. You should note that if you are rendering the value as text in a React component, this can throw a warning since the server rendered page will mismatch the hydrated client-side render.
If you need functionality to pass state between client and server, you will need something more complex like Redux state management with the Redux Persist library, or an external database.
Placing the haversack inside an extradimensional space created by a bag of holding, portable hole, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.
[1.0.0] - 2020-10-17
useLocalStorage
and useSessionStorage
FAQs
Easy save states through browser LocalStorage or SessionStorage.
We found that haversack 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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.