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-state-persistent

v1.2.0

Published

A persistent version of useState Hook using LocalStorage.

Downloads

49

Readme

use-state-persistent

useStatePersistent is a custom React hook that adds persistence to the standard useState hook using the LocalStorage in the web browser.

Installation

npm install use-state-persistent

Import

import { useStatePersistent } from 'use-state-persistent';

Usage

The usage syntax is similar to useState except for the extra key argument. Here, 0 is the initial value for x and 'my-key-for-x' is the unique key using which x will be saved in LocalStorage.

const [x, setX] = useStatePersistent(0, 'my-key-for-x');

useStatePersistent will check if there already exists a value for my-key-for-x in the LocalStorage and will return it if it exists. Otherwise the initial value will be returned.

Thereafter, every subsequent call to setX will save the new value to the LocalStorage.

I am using readmix for generating this README. You can view the source file here.

Source Code

import React from "react";



export const useStatePersistent = <StateType>(initialValue: StateType, key: string): [
	StateType,
	(v: StateType | ((v: StateType) => StateType)) => void
] => {
	// Get the stored value or fallback to the initial value
	const [storedValue, setStoredValue] = React.useState(() => {
		try {
			const item = window.localStorage.getItem(key);
			return item ? JSON.parse(item) : initialValue;
		} catch (error) {
			return initialValue;
		}
	});

	const setStoredValueLS = (value: StateType | ((v: StateType) => StateType)) => {
		try {
			// If value is a function (updater form)
			const valueToStore = value instanceof Function ? value(storedValue) : value;

			// Update state
			setStoredValue(valueToStore);

			// Save to localStorage
			window.localStorage.setItem(key, JSON.stringify(valueToStore));
		} catch (error) {
			console.error("Error setting localStorage", error);
		}
	};

	return [storedValue, setStoredValueLS];
};

export default useStatePersistent;

Package details

| Name | Value | | -------------- | ----------------------------------------------------------- | | Name | use-state-persistent | | Description | A persistent version of useState Hook using LocalStorage. | | Version | 1.1.0 | | Author | iaseth | | Homepage | https://github.com/iaseth/use-state-persistent | | Repository | iaseth/use-state-persistent | | License | MIT | | Dependencies | 2 |

Dependencies

| | Package | Version | | --- | ----------- | ----------- | | 1 | react | ^18.3.1 | | 2 | react-dom | ^18.3.1 |

Dev dependencies

| | Package | Version | | --- | -------------- | ----------- | | 1 | @types/react | ^18.3.12 | | 2 | eslint | ^9.15.0 |

License

File not found: LICENSE.md

Credit

This file was generated using readmix.