npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@plq/use-persisted-state

v1.4.5

Published

useState hook with persistence in storage

Readme

usePersistedState

npm version Tests License: MIT Ko-fi

A React useState that persists to localStorage, sessionStorage, extension storage (browser.storage / chrome.storage), or any custom backend.

Features

  • Persist state to localStorage, sessionStorage, extension storage, or almost anything else that implements the storage API
  • One state factory serves as many keys as needed, so you don't have to call the factory for each variable
  • Supports both synchronous and asynchronous storage backends
  • Components using the same key stay in sync; with the localStorage adapter, changes also propagate across browser tabs
  • Written in TypeScript — type definitions ship with the package
  • A single tiny runtime dependency: @plq/is

Requirements

To use @plq/use-persisted-state, you must use [email protected] or greater, which includes Hooks. The library is tested against React 19. The peer range allows React 16.8 and above, though only 19 is exercised in CI.

Install

npm install @plq/use-persisted-state

Quick start

import createPersistedState from '@plq/use-persisted-state'
import storage from '@plq/use-persisted-state/storages/local-storage'

const [usePersistedState] = createPersistedState('example', storage)

export default function App() {
  const [count, setCount] = usePersistedState('count', 0)
  const handleIncrement = () => setCount(prevCount => prevCount + 1)

  return (
    <div>
      {count}
      <button onClick={handleIncrement}>+</button>
    </div>
  )
}

This example uses the bundled localStorage adapter; Storage adapters lists the rest and what each one is for.

To try it locally, run the demo app from a repository checkout: npm ci && npm run demo.

API

createPersistedState(name, storage) — default export

const [usePersistedState, clear] = createPersistedState(name, storage)
  • name — a namespace for this factory. All keys created by the returned hook are stored together in a single storage entry named persisted_state_hook:<name>.
  • storage — a synchronous or asynchronous storage backend implementing the storage API.

Returns a [usePersistedState, clear] tuple. The default export detects whether the backend is asynchronous from the shape of its methods wherever it can — a get declared async settles the question without a call. Only when that does not hold does it call get('') once, as a method of your storage, to see whether the result is a Promise; set and remove are never invoked, so detection cannot write to your storage. All three members must be functions. If even a read during setup is undesirable, import one of the named factories below instead — they skip detection entirely.

Named factories

import { createPersistedState, createAsyncPersistedState } from '@plq/use-persisted-state'
  • createPersistedState(name, storage) — for synchronous backends only (localStorage, sessionStorage).
  • createAsyncPersistedState(name, storage) — for asynchronous backends only (browser.storage, chrome.storage, custom promise-based backends).

usePersistedState(key, initialValue)

const [state, setState] = usePersistedState(key, initialValue)

Works like useState: returns the current state and a setter that accepts either a value or an updater function (prev => next). In addition, every update is written to the storage backend, and external changes to the stored value update the state.

  • Values follow JSON.stringify: unsupported members may be omitted or transformed, while values that make serialization throw are not persisted. See Values JSON cannot carry.
  • Setters update React state optimistically before persistence. A synchronous setter throws and an asynchronous setter rejects if reading, parsing, serializing, or writing the shared entry fails. Parsing and serialization failures leave the stored entry unchanged.
  • Await an asynchronous setter, or give it a catch. It returns a promise, and a rejected one nobody handles ends the process on Node 15 and later.
  • With an asynchronous backend, the hook renders initialValue first and updates once the stored value has loaded.

clear()

Removes the factory's whole storage entry. Hooks created by that factory fall back to their initial values. An entry that was not there is not reported as removed, so nothing resets. Returns void for synchronous backends and Promise<void> for asynchronous ones.

TypeScript

The package ships its own type definitions. The storage contract and the hook's own types are exported from the entry point:

import type { Storage, AsyncStorage, StorageChange, StorageChangeListener } from '@plq/use-persisted-state'

Storage and AsyncStorage are the two backend contracts. StorageChange, StorageChangeListener and StorageChangeEvent describe the onChanged event an adapter provides. PersistedState and UsePersistedState type the hook and the tuple it returns.

The longer @plq/use-persisted-state/lib/@types/storage path that earlier versions documented continues to work and resolves to the same types. Prefer the entry point: lib/ is kept open for compatibility only.

Clear storage

import createPersistedState from '@plq/use-persisted-state'
import storage from '@plq/use-persisted-state/storages/local-storage'

const [usePersistedState, clear] = createPersistedState('example', storage)

export default function App() {
  const [count, setCount] = usePersistedState('count', 0)
  const increment = () => setCount(prevCount => prevCount + 1)

  return (
    <div>
      {count}
      <button onClick={increment}>+</button>
      <button onClick={clear}>Clear</button>
    </div>
  )
}

Use sessionStorage

import createPersistedState from '@plq/use-persisted-state'
import storage from '@plq/use-persisted-state/storages/session-storage'

const [usePersistedState, clear] = createPersistedState('example', storage)

Use async storage

import createPersistedState from '@plq/use-persisted-state'
// or, to skip async detection:
import { createAsyncPersistedState } from '@plq/use-persisted-state'
import { local } from '@plq/use-persisted-state/storages/browser-storage'

const [usePersistedState, clear] = createPersistedState('example', local)

Use custom storage

The storage API is similar to the WebExtensions browser.storage API, with a few differences. Any object implementing it works:

import createPersistedState from '@plq/use-persisted-state'

const storageListeners = new Set()

const myStorage = {
  get: keys => getItemsFromSomeStorage(keys),
  set: items => setItemsToSomeStorage(items),
  remove: keys => removeItemsFromSomeStorage(keys),
  onChanged: {
    addListener: listener => storageListeners.add(listener),
    removeListener: listener => storageListeners.delete(listener),
    hasListener: listener => storageListeners.has(listener),
  },
}

const [usePersistedState, clear] = createPersistedState('example', myStorage)

Your adapter owns that listener set and calls every listener when the backing store changes, which is what keeps components on the same key in sync. The storage API documents the change payload and carries the complete example, including how to forward a backend's own events to the listeners.

Storage adapters

The longer @plq/use-persisted-state/lib/storages/… paths that earlier versions documented continue to work. Prefer the shorter ones below: imported from ES module code, the lib path hands back the CommonJS exports object rather than the adapter, so it needs an extra .default that the shorter path does not.

localStorage @plq/use-persisted-state/storages/local-storage

  • Useful for the average web application.
  • Synchronous. Changes made in other browser tabs are picked up through the storage event.

sessionStorage @plq/use-persisted-state/storages/session-storage

  • Useful for state that should not outlive the browser session.
  • Synchronous.

browser.storage @plq/use-persisted-state/storages/browser-storage

  • Only for web extensions. Asynchronous.
  • Named exports for each storage area: local, sync and managed (note that the managed area is read-only for the extension).
  • Don't forget to set up the polyfill if you want to run the extension in a Chromium-based browser.
  • You need to declare the "storage" permission in your manifest.json file.

chrome.storage @plq/use-persisted-state/storages/chrome-storage

  • Only for Chromium-based web extensions. Asynchronous.
  • Named exports for each storage area: local, sync and managed (the managed area is read-only for the extension).
  • If your extension runs only in Chromium-based browsers, you can use this adapter without the polyfill.
  • You must declare the "storage" permission in the extension manifest to use this adapter.
import createPersistedState from '@plq/use-persisted-state'
import { local } from '@plq/use-persisted-state/storages/chrome-storage'

const [usePersistedState, clear] = createPersistedState('example', local)

Server-side rendering

This library targets browser environments. Two things matter when rendering on a server:

  • The bundled local-storage and session-storage adapters can be imported without localStorage / sessionStorage. Where the global is missing the adapter reads back nothing and discards every write, so the hook keeps its initial value rather than throwing.
  • The synchronous hook reads from storage during render.

When using an SSR framework (Next.js, Remix, etc.), make sure the components using the hook run only on the client — for example, in client-only components or behind a dynamic import that is disabled during SSR.

How values are stored

Each factory keeps all of its keys in a single storage entry named persisted_state_hook:<name>, holding a JSON object with one property per key:

persisted_state_hook:example → {"count":0}

Storage backends only ever see serialized strings. Anything you persist ends up unencrypted in the underlying storage — do not store secrets or sensitive data (see SECURITY.md).

A change reported with an absent or null newValue is the backend's removal signal: every hook on that entry resets to its latest initial value, whatever oldValue holds. On an asynchronous backend a factory serializes its own writes and removals, so a failed operation rejects its caller without stopping the ones queued behind it. Separate factories and writers outside the library are not coordinated.

An entry the library cannot read

A write replaces the factory's whole entry, so there is nothing safe to store when the entry already there is a string that will not parse — the empty string included — or parses to something that is not an object: another library writing under the same key, or a write cut short. Such an entry is never rebuilt, and every other hook's key stays exactly where it is:

  • an initial read reports the entry on console.error and the hook mounts on its initial value;
  • a storage change carrying such an entry is reported and ignored, leaving the hook where it is;
  • a setter keeps the value you set in memory, writes nothing, and then throws on a synchronous backend or rejects on an asynchronous one, so the failure is yours to handle. Earlier versions reported it on console.error instead; nothing is logged for a failed write now.

The factory's clear removes the entry and lets writing resume.

This reaches as far as the adapter reports. Web storage holds only strings, so anything under the key comes back and is checked. Extension storage holds arbitrary JSON, and the bundled adapters report a non-string value as absent — the library then reads the entry as empty and its next write replaces that value. Storing your own data under a persisted_state_hook: key in extension storage is not safe, whatever its type.

Values JSON cannot carry

A few values do not survive JSON.stringify. This follows from the format rather than from a choice the library makes, and no adapter can repair it: once a value has been written, nothing in storage tells a null you stored apart from a null that JSON produced.

  • undefined — JSON omits that hook key. The writer retains undefined, the shared entry is rewritten without that key while sibling keys survive, mounted listeners receiving an entry without the key keep their current value, and a fresh reader uses its initial value.
  • NaN, Infinity, -Infinity — these are written as null. A storage change reported by the backend applies that null to every listening component, including the writer. Any reader after a reload also reads back null.

Contributing

Contributions are welcome — see CONTRIBUTING.md for setup, testing and the commit convention, and CODE_OF_CONDUCT.md for community standards.

A note from the creator

I continue to maintain this project, but my available time is limited. In practice, I usually return to it once or twice a year, so responses may take time.

I use AI-assisted development alongside my own engineering judgment to make maintenance more sustainable and help me return to the project more often. I remain responsible for the project's direction and for every change and release.

— Alexander Kurganov

License

MIT