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 🙏

© 2024 – Pkg Stats / Ryan Hefner

use-persisted-state-hook

v1.4.0

Published

Resilient state that persist across browser's sessions 📦

Downloads

9,058

Readme

Lightweight, resilient persisted useState.

Features:

  • 📦 Persist state on localStorage between browser sessions.
  • ⚛️ Automatically handle state's shape updates.
  • 🔄 Handle stale states when initial state changes.
  • ✅ Similar interface to React's official useState hook.
  • ✨ Server Side Render Support.

Installation

npm:

npm install use-persisted-state-hook

yarn:

yarn add use-persisted-state-hook

Detect Changes in Initial State

use-persisted-state-hook is the only library that handles changes in initial state gracefully. Leet's imagine that you have a hook called useLocalStorage like the one provided here. It has the same API that useState and looks like this:

function Greet() {
  const [visits, setVisits] = useLocalStorage('visits', 0)

  // Logic to update visits...

  return (
    <div>Visits count is {visits}</div>
  )
}

Now, imagine that you want to update the initial state to it stores more information:

function Greet() {
  const [visits, setVisits] = useLocalStorage('visits', { today: 0, total: 0 }))

  // Logic to update visits...

  return (
    <div>
      <div>Today's count is {visits.today}</div>
      <div>Total count is {visits.total}</div>
    </div>
  )
}

The code above works, however, there's a pitfall. A user that loaded your app after you released the first version, so the value it has stored for visits is 0 (or 1, or 5, or any integer). When they load your app again with the new logic, they'll see "Today's count is " and "Total count is ".

usePersistedState is the only library that handles this case gracefully by storing an identifier that identifies uniquely the initial state so, whenever it changes, the state it's going to be reset and you'd never have to think about this issue in the first place ✨

Usage

Simple Example

import React from 'react'
import usePersistedState from 'use-persisted-state-hook'

function Counter() {
  const [count, setCount] = usePersistedState('count', 0)

  return (
    <div>
      <div>Count is {count}</div>
      <button onClick={() => setCount(count + 1)}>Increment</button>
      <button onClick={() => setCount(count - 1)}>Decrement</button>
    </div>
  )
}

export default Counter

Elaborated Example

Expected output

Code (styles ommited):

import React from 'react'
import usePersistedState from 'use-persisted-state-hook'

function Settings() {
  const [options, setOptions] = usePersistedState('options', [
    { title: 'Dark Mode', name: 'dark_mode', enabled: true },
    { title: 'Data Saving 2', name: 'data_saving', enabled: true },
  ])

  const onClick = (e) => {
    setOptions(
      options.map((option) =>
        option.name === e.target.name
          ? { ...option, enabled: !option.enabled }
          : option
      )
    )
  }

  return (
    <div>
      {options.map((option) => (
        <label>
          <input
            type="checkbox"
            name={option.name}
            checked={option.enabled}
            onClick={onClick}
          />{' '}
          {option.title}
        </label>
      ))}
    </div>
  )
}