react-persisted-global-state
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

react-persisted-global-state

License Project Status: Active – The project has reached a stable, usable state and is being actively developed. Depfu npm npm GitHub stars All Contributors

About

Simple React hook for global state which is persisted to Local Storage.

This allows sharing state between multiple components or different instance of the same component, all while the changes are persisted to the browser's Local Storage.

Installing

Install react-persisted-global-state and its peer-dependencies:

# For users of npm
npm install --save react-persisted-global-state react-use

# For users of Yarn
yarn add react-persisted-global-state react-use

Usage

import { createPersistedGlobalState } from 'react-persisted-global-state';

// Register a re-usable instance of our global state store
const useMyPersistedGlobalState = createPersistedGlobalState<string>(
  'my-localstorage-key',
  'Hello, world!'
);

const MyComponent = () => {
  const [state, setState, removeState] = useMyPersistedGlobalState();

  return (
    <input type="text" value={state} onChange={e => setState(e.target.value)} onClear />
  );
};

Releasing

We use release-it to automate our creating releases for this application. A new release can be rolled out by running:

yarn release

Contributors

Thanks goes to these wonderful people (emoji key):


Adriaan Knapen

💻 🔧 📖 ⚠️

This project follows the all-contributors specification. Contributions of any kind welcome!

Package Sidebar

Install

npm i react-persisted-global-state

Weekly Downloads

111

Version

1.0.1

License

MIT

Unpacked Size

21.1 kB

Total Files

14

Last publish

Collaborators

  • addono