Gathering detailed insights and metrics for use-local-storage-state
Gathering detailed insights and metrics for use-local-storage-state
Gathering detailed insights and metrics for use-local-storage-state
Gathering detailed insights and metrics for use-local-storage-state
React hook that persists data in localStorage
npm install use-local-storage-state
Typescript
Module System
Min. Node Version
92.7
Supply Chain
92.7
Quality
78.5
Maintenance
100
Vulnerability
100
License
TypeScript (98.08%)
JavaScript (1.92%)
Built with Next.js • Fully responsive • SEO optimized • Open source ready
Total Downloads
14,466,052
Last Day
4,969
Last Week
133,429
Last Month
567,950
Last Year
5,735,411
MIT License
1,208 Stars
525 Commits
39 Forks
7 Watchers
4 Branches
12 Contributors
Updated on Aug 29, 2025
Latest Version
19.5.0
Package Id
use-local-storage-state@19.5.0
Unpacked Size
17.36 kB
Size
5.93 kB
File Count
9
Published on
Nov 13, 2024
Cumulative downloads
Total Downloads
Last Day
-19.8%
4,969
Compared to previous day
Last Week
-5.6%
133,429
Compared to previous week
Last Month
-3%
567,950
Compared to previous month
Last Year
39.6%
5,735,411
Compared to previous year
25
use-local-storage-state
React hook that persist data in
localStorage
React 18 and above:
1npm install use-local-storage-state
⚠️ React 17 and below. For docs, go to the react-17 branch.
1npm install use-local-storage-state@17
Window
storage
event and updates changes across browser tabs, windows, and iframe's. Disable with storageSync: false
.localStorage
throws an error and can't store the data. Provides a isPersistent
API to let you notify the user their data isn't currently being stored.1import useLocalStorageState from 'use-local-storage-state' 2 3export default function Todos() { 4 const [todos, setTodos] = useLocalStorageState('todos', { 5 defaultValue: ['buy avocado', 'do 50 push-ups'] 6 }) 7}
1import React, { useState } from 'react' 2import useLocalStorageState from 'use-local-storage-state' 3 4export default function Todos() { 5 const [todos, setTodos] = useLocalStorageState('todos', { 6 defaultValue: ['buy avocado'] 7 }) 8 const [query, setQuery] = useState('') 9 10 function onClick() { 11 setQuery('') 12 setTodos([...todos, query]) 13 } 14 15 return ( 16 <> 17 <input value={query} onChange={e => setQuery(e.target.value)} /> 18 <button onClick={onClick}>Create</button> 19 {todos.map(todo => ( 20 <div>{todo}</div> 21 ))} 22 </> 23 ) 24} 25
localStorage
isn't saving the data using the isPersistent
propertyThere are a few cases when localStorage
isn't available. The isPersistent
property tells you if the data is persisted in localStorage
or in-memory. Useful when you want to notify the user that their data won't be persisted.
1import React, { useState } from 'react' 2import useLocalStorageState from 'use-local-storage-state' 3 4export default function Todos() { 5 const [todos, setTodos, { isPersistent }] = useLocalStorageState('todos', { 6 defaultValue: ['buy avocado'] 7 }) 8 9 return ( 10 <> 11 {todos.map(todo => (<div>{todo}</div>))} 12 {!isPersistent && <span>Changes aren't currently persisted.</span>} 13 </> 14 ) 15} 16
localStorage
and resetting to the defaultThe removeItem()
method will reset the value to its default and will remove the key from the localStorage
. It returns to the same state as when the hook was initially created.
1import useLocalStorageState from 'use-local-storage-state' 2 3export default function Todos() { 4 const [todos, setTodos, { removeItem }] = useLocalStorageState('todos', { 5 defaultValue: ['buy avocado'] 6 }) 7 8 function onClick() { 9 removeItem() 10 } 11}
If you are hydrating your component (for example, if you are using Next.js), your component might re-render twice. This is behavior specific to React and not to this library. It's caused by the useSyncExternalStore()
hook. There is no workaround. This has been discussed in the issues: https://github.com/astoilkov/use-local-storage-state/issues/56.
If you want to know if you are currently rendering the server value you can use this helper function:
1function useIsServerRender() { 2 return useSyncExternalStore(() => { 3 return () => {} 4 }, () => false, () => true) 5}
useLocalStorageState(key: string, options?: LocalStorageOptions)
Returns [value, setValue, { removeItem, isPersistent }]
when called. The first two values are the same as useState()
. The third value contains two extra properties:
removeItem()
— calls localStorage.removeItem(key)
and resets the hook to it's default stateisPersistent
— boolean
property that returns false
if localStorage
is throwing an error and the data is stored only in-memorykey
Type: string
The key used when calling localStorage.setItem(key)
and localStorage.getItem(key)
.
⚠️ Be careful with name conflicts as it is possible to access a property which is already in localStorage
that was created from another place in the codebase or in an old version of the application.
options.defaultValue
Type: any
Default: undefined
The default value. You can think of it as the same as useState(defaultValue)
.
options.defaultServerValue
Type: any
Default: undefined
The default value while server-rendering and hydrating. If not set, it will use defaultValue
option instead. Set only if you want it to be different than the client value.
options.storageSync
Type: boolean
Default: true
Setting to false
doesn't subscribe to the Window storage event. If you set to false
, updates won't be synchronized across tabs, windows and iframes.
options.serializer
Type: { stringify, parse }
Default: JSON
JSON does not serialize Date
, Regex
, or BigInt
data. You can pass in superjson or other JSON
-compatible serialization library for more advanced serialization.
use-storage-state
— Supports localStorage
, sessionStorage
, and any other Storage
compatible API.use-session-storage-state
— A clone of this library but for sessionStorage
.use-db
— Similar to this hook but for IndexedDB
.local-db-storage
— Tiny wrapper around IndexedDB
that mimics localStorage
API.No vulnerabilities found.
tg-use-local-storage-state
React hook that persists data in localStorage
@pansy/use-local-storage-state
@motherbrainn/use-local-storage
A lightweight hook for client side apps that makes storing and modifying data in local storage as easy as setting state.
@plq/use-persisted-state
useState hook with persistence in storage