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

@tasoskakour/use-persisted-reducer

v1.0.8

Published

Enhance useReducer with persistence to local/session storage (with ttl support).

Downloads

2

Readme

@tasoskakour/use-persisted-reducer

gh workflow npm

A custom React hook that provides multi tab/browser persistent state. With TTL support.

use-persisted-reducer is actually a function that accepts a key, an optional storage provider (defaults to window.localStorage) and an optional ttl parameter and returns a React hook with identical API as the classic useReducer.

Features

  • Persists the reducer's state to localStorage or sessionStorage.
  • Automatically syncs state between tabs and/or browser windows.
  • Shares state between multiple hooks on a page.
  • Provides TTL support.

Install

Requires [email protected] or higher that includes hooks.

yarn add @tasoskakour/use-persisted-reducer

or

npm i @tasoskakour/use-persisted-reducer

Example

Let's take a look at a standard counter example. As you'll see the created hook has identical API with the standard React's useReducer hook.

import createPersistedReducer from "@tasoskakour/use-persisted-reducer";

const useCounterPersistedReducer = createPersistedReducer("COUNTER", {
  storage: window.localStorage, // or window.sessionStorage (defaults to localStorage)
  ttl: 10 // optional ttl in seconds
});

const reducer = (state, action): State => {
  // your counter reducer...
};

const INITIAL_STATE = {
  // initial state...
};

// And then use it as you would normally use the basic React's useReducer hook
const App = () => {
  const [state, dispatch] = useCounterPersistedReducer(reducer, INITIAL_STATE);
  // or const [state, dispatch] = useCounterPersistedReducer(reducer, someArgument, someInitFunction);

  const { counter } = state;
  return (
    <div>
      Counter's value: {counter}
      <button onClick={() => dispatch({ type: "INCREASE" })}>Increase</button>
      <button onClick={() => dispatch({ type: "DECREASE" })}>Increase</button>
    </div>
  );
};

// Example taken from: https://reactjs.org/docs/hooks-reference.html#usereducer

API

- function createPersistedReducer (key, options): usePersistedReducer

Parameters:

  • key (string): The localStorage/sessionStorage key that the data will be written to.
  • options? (Object):
    • storage? (Storage): Can be localStorage/sessionStorage or whatever storage you prefer. Optional - defaults to window.localStorage
    • ttl? (number): Expressed in seconds and represents when the data in the storage will be considered stale. Optional - defaults to null which means there is no TTL so the persisted data will never be considered expired.

Returns:

  • usePersistedReducer (Function): The returned function is a hook which can be used with the same API as the classic React's useReducer hook. See Example