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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@pitboxdev/dynamic-store-redux

v0.1.6

Published

Dynamic slice factory built on top of Redux Toolkit for scalable, useState-like state management

Readme

@pitboxdev/dynamic-store-redux

Dynamic slice factory for Redux ToolkituseState-like ergonomics with the full power of RTK.


🚀 Live Demo

  • Basic Demo – Theme toggling, cross-branch state updates, and complex reset scenarios.

⚡ Simplicity First

const { data, setData } = useDynamicSlice('user', { initialState });

That's it. No actions, no reducers, no boilerplate. Just useState ergonomics with the full power of Redux.


🚀 Quick Start

1. Installation & Setup

npm install @pitboxdev/dynamic-store-redux @reduxjs/toolkit react-redux

Initialize the store in your entry point:

import { Provider } from "react-redux";
import { createDynamicStore } from "@pitboxdev/dynamic-store-redux";

// Basic initialization
const store = createDynamicStore();

// OR: Advanced initialization
const advancedStore = createDynamicStore({
  staticReducers: { 
    auth: authReducer, 
    settings: settingsReducer 
  },
  extraMiddlewares: [loggerMiddleware],
  preloadedState: { settings: { theme: 'dark' } },
  devTools: true
});

2. Basic Usage

import { useDynamicSlice } from "@pitboxdev/dynamic-store-redux";

interface UserState { name: string; score: number }

function Profile() {
  const { 
    data,       // Current state (or selected part)
    setData,    // Update state (shallow merge)
    resetData,  // Reset to initial state
    getData,    // Sync getter (avoids re-renders in callbacks)
  } = useDynamicSlice<UserState>(
    "profile",                     // 1. Slice ID (must be unique)
    {                              // 2. Configuration Object
      initialState: { name: "Guest", score: 0 },
      persistOnNavigation: true,   // Keep state when changing routes
      resetOnUnmount: true,        // Reset state when component unmounts
      navigationGroups: ["auth"],  // Tag for selective bulk reset
    },
    (state) => state               // 3. Optional Selector (for performance)
  );

  return (
    <div>
      <p>{data.name}: {data.score}</p>
      <button onClick={() => setData((prev) => ({ score: prev.score + 1 }))}>
        +1 Score
      </button>
      <button onClick={resetData}>Reset</button>
    </div>
  );
}

🧹 Cleanup & Navigation

By default, dynamic slices are persistent. You can trigger cleanup manually when the route changes or when a component unmounts.

Config Options

| Option | Type | Default | Description | | --- | --- | --- | --- | | persistOnNavigation | boolean | false | If true, state is NOT reset when resetDynamicSlices("non-persistent") is called. | | navigationGroups | string[] | — | Tags for grouping slices. Allows for selective bulk resets (e.g., reset all "UI" slices but keep "User" slices). | | resetOnUnmount | boolean | false | Automatically reset state when the component calling useDynamicSlice is unmounted. |

Why use navigationGroups?

Grouping slices is powerful for managing complex state lifetimes. Instead of resetting slices one by one, you can categorize them:

  • Example 1: The Multi-Step Form Tag all slices in a checkout flow with navigationGroups: ["checkout"]. When the user finishes or cancels, call resetDynamicSlices(["checkout"]) to clean up everything at once.
  • Example 2: Global UI State Tag modals, sidebars, and filters with navigationGroups: ["ui"]. You can then reset all UI elements during navigation while keeping data slices alive.

Manual & Selective Reset

import { resetDynamicSlices } from "@pitboxdev/dynamic-store-redux";

// 1. Basic navigation cleanup:
// Resets everything EXCEPT slices with { persistOnNavigation: true }
resetDynamicSlices("non-persistent"); 

// 2. The "Logout" pattern:
// Resets absolutely every dynamic slice to its initial state.
resetDynamicSlices("all"); 

// 3. Selective reset by Tag:
// Resets only slices that have "checkout" in their navigationGroups.
resetDynamicSlices(["checkout"]); 

// 4. Reset with Exclusions:
// Resets everything but skip slices tagged with "user-settings" or "theme".
resetDynamicSlices("all", { excludeGroups: ["user-settings", "theme"] });

⚓ Router Integration

To trigger cleanup only on transitions (skipping the first render), use a ref guard:

const isFirstRender = useRef(true);

useEffect(() => {
  if (isFirstRender.current) {
    isFirstRender.current = false;
    return;
  }
  resetDynamicSlices("non-persistent");
}, [location.pathname]);

🛠️ Advanced Features

Optimizing Re-renders

Pass a selector as the third argument to subscribe only to specific state changes:

const { data: score } = useDynamicSlice("user", config, (s) => s.score);

Subscriptions-free access

Use useDynamicSliceActions to get setters and getters without subscribing to state changes (prevents re-renders).

const { setData, getData } = useDynamicSliceActions<UserState>("user");

🤝 Need Professional Help?

Available for technical collaboration on React/Redux architecture and custom project development. Contact: [email protected]


License

MIT © Pitboxdev