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

zentropy

v1.2.3

Published

A lightweight and flexible state management library for TS and JS projects.

Readme

Zentropy

Zen (simplicity) + Entropy (state change)

A lightweight and flexible state management library for TS and JS projects. This library provides a simple way to share and manage state across your application with reducers, subscriptions, actions, middleware, and a reset function.

React

Recommend using zentropy-react

Why Use This Library?

Unlike verbose state management solutions like Redux, this library is:

  • Lightweight – No unnecessary boilerplate. No dependencies.
  • Easy to use – Simple API with minimal setup.
  • Flexible – Works with reducers, direct updates, and middleware.
  • Performant – Uses direct state updates and subscriptions for efficiency.

Installation

You can install the package via npm:

npm install zentropy

or using yarn:

yarn add zentropy

Usage

Creating a State

import { makeState } from "zentropy";

const initial: number = 0;

// Type are inferred from initial and reducer's keys
const counterState = makeState({
  initial,
  reducers: {
    increment: (state) => state + 1,
    decrement: (state) => state - 1,
    add: (state, amount) => state + amount
  },
});

Subscribing to State Changes

// Subscribing returns the unsub function, in case you don't want to use the state.unsubscribe() method
const unsub = counterState.subscribe((value) => {
  console.log("Counter updated:", value);
});

// Will remove the listener and no longer be called on state changes
unsub();

Updating State Directly

counterState.update(10);

Using Auto-Generated Actions

const { increment, decrement } = counterState.actions;

increment();
decrement();
counterState.actions.add(5);

Dispatching Actions

counterState.dispatch("increment");
counterState.dispatch("decrement");
counterState.dispatch("add", 10);

Resetting State

Reset the state to its initial value:

counterState.reset();

Using Middleware

Middleware functions allow you to intercept state updates, useful for logging, debugging, or persisting state.

// Also returns an unsub callback so you can remove this middleware
const unsub = counterState.use((state, action, payload) => {
  console.log(`Action: ${action}, Payload:`, payload, "New State:", state);
});

counterState.dispatch("increment");
// Console: Action: increment, Payload: undefined, New State: 1

API

makeState(props: MakeProps)

Creates a new state instance.

state.value

Returns the current state value.

state.subscribe(fn: (value: T) => void)

Subscribes a listener to state changes.

state.unsubscribe(fn: (value: T) => void)

Unsubscribes a listener.

state.update(updated: T)

Directly updates the state value and notifies subscribers.

state.actions

Provides an object containing callable actions based on the defined reducers.

state.dispatch(action: ReducerKey, payload?: any)

Calls a reducer function with the given action and payload.

state.reset()

Resets the state to its initial value.

state.use(middleware: Middleware<T>)

Adds middleware to intercept and process state changes.

License

MIT