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

v4.8.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>Add to Cart</button>; // ops.self.items._push(product)
}

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

Engineering Highlights (v4)

FractoState v4 introduces advanced primitives designed for enterprise-scale requirements, featuring our most optimized Surgical Engine to date.

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.

Immediate Effects & Hydration

Auto-executing side effects with dependency tracking and pre-mount hydration capabilities.

Performance Benchmarks

FractoState is engineered for high-throughput environments. Our latest Stress Test (v4) demonstrates how the Surgical Engine v4 handles massive states with near-zero overhead.

The Quantum Leap (v4 Stress Test)

We simulated an "Enterprise-Scale" environment with 10,000+ nested objects and executed thousands of deep surgical updates in rapid succession.

| Metric | Result | Optimization Impact | | :----------------------- | :--------------- | :---------------------------------------- | | Max Throughput | 3,400+ ops/s | Surgical Engine v4 Optimization | | Init (50k items) | 1.3ms | Instant cold-start via Memory Vault | | Update Latency (p50) | 18µs | Direct path-traversal without full clones | | Batching Efficiency | 99.9% | 10k actions batched into 1 micro-task |

Analysis & Conclusion

As shown in the latency distribution below, FractoState maintains a consistent performance profile even at the P99 percentile. By bypassing traditional deep-cloning for internal operations and utilizing a Live-Access Proxy, we've eliminated the primary performance bottleneck of immutable state management.

Conclusion

FractoState v4 focuses on architectural simplicity, fine-grained updates, and predictable performance at scale. Its decoupled state model ensures consistent responsiveness across both small and large applications, making it a solid foundation for performance-critical React interfaces.

Documentation Reference


FractoState | Engineered for Precision. Optimized for Performance.