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

fractostate

v3.1.5

Published

FractoState is a high-performance, decentralized state management library for React. It is engineered to provide surgical state updates with zero boilerplate, absolute type safety, and an architecture that exists independently of the React component tree.

Readme

FractoState | Decentralized State Management for React

FractoState is a high-performance, decentralized state management engine for React applications. It provides surgical state updates through an atomic proxy architecture, ensuring absolute type safety and zero boilerplate.

Technical Demonstration

[!NOTE] Autoplay is disabled on GitHub. Please click below to view the demonstration video.

Architectural Objectives

Traditional state management patterns often encounter significant performance and maintainability limitations:

  1. Context Overhead: Dependency on high-level providers often results in unnecessary re-renders across the component tree.
  2. Boilerplate Rigidity: Redux-like architectures introduce significant cognitive overhead for routine state transitions.
  3. Memory Latency: Standard immutable patterns in JavaScript frequently require expensive deep-cloning operations.
  4. Namespace Pollution: Global state exposure increases the risk of side effects and non-deterministic mutations.

Core Engineered Solutions

FractoState redefines state management via three architectural pillars:

  • Isolated Memory Vault: State is encapsulated within private closures, preventing unauthorized external mutations and ensuring data integrity.
  • Atomic Proxy Engine: Utilizes recursive Proxies to provide a direct mutation API while maintaining strict immutability and surgical update resolution under the hood.
  • Direct Subscription Model: Components subscribe directly to specific Vault keys, bypassing the React Context tree to ensure minimal O(1) render targeting.

Installation

# xfpm (recommended)
xfpm install fractostate

# standard package managers
npm install fractostate
yarn add fractostate
pnpm add fractostate

Quick Implementation

Example of a decentralized cart state:

import { defineFlow, useFlow } from "fractostate";

// ◈ Define the flow definition
const CartFlow = defineFlow("cart", { items: [], total: 0 });

// ◈ Interaction in any component
function AddToCartButton({ product }) {
  const [, { ops }] = useFlow(CartFlow);

  return (
    <button onClick={() => ops.self.items._push(product)}>Add to Cart</button>
  );
}

// ◈ Focused reactivity
function CartIcon() {
  const [cart] = useFlow(CartFlow);
  return <span>{cart.items.length} units</span>;
}

Engineering Highlights (v3.1)

FractoState v3 introduces advanced primitives designed for enterprise-scale requirements.

Computed Flows

Reactive, read-only state nodes derived from source flows.

Native Async Actions

Encapsulated business logic with direct access to surgical operation proxies.

Extensible Plugin Interface

Unified API for state persistence, telemetry, and debugging.

Surgical DevTools

Real-time state inspector with zero-configuration overhead.

Performance Benchmarks

FractoState is engineered for high-throughput environments. Current benchmarks demonstrate performance parity with minimalist libraries while significantly outperforming traditional Redux patterns.

| Scenario | Objective | FractoState | Industry Standard | | :------------------------- | :--------------- | :------------ | :------------------------- | | Big Data (1M nodes) | Mutation Latency | 2.1s | 3.1s (Redux Toolkit) | | Deep Update (1k nodes) | Throughput | 887 ops/s | 430 ops/s (Standard React) | | Store Initialization | Setup Latency | 2.2ms | 6.5ms (Redux Toolkit) |

Scalability Analysis

While libraries like Zustand require manual immutable spreading for deep updates, FractoState achieves similar throughput with a declarative API: ops.registry[id].child._set(data). This eliminates developer error in complex state transitions without sacrificing performance.

Detailed technical analysis available in: Performance Specifications.

Documentation Reference


FractoState | Engineered for Precision. Optimized for Performance.