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

@slashand/sdui-blade-react

v1.0.0-alpha.4

Published

React SDUI rendering wrapper for the Agnostic Blade System.

Readme

🌌 @slashand/sdui-blade-react

npm version License: MIT

The React Synthesizer for the Agnostic Blade System. It consumes the abstract Constellation Map and manifests it into interactive, high-fidelity DOM nodes in real-time.

📖 Table of Contents

🧠 The Glass Brain

If the SDUI Core is the nervous system, @slashand/sdui-blade-react is the muscle. It takes the cold, mathematical JSON architecture calculated by the backend and breathes React into it. Utilizing advanced framer-motion kinematics for deeply integrated micro-animations, and tailwind-merge with clsx for deterministic styling collision resolution, it guarantees that dynamically ingested interfaces look and feel tactile.

✨ Core Capabilities

  • Zero-Friction Rendering Pipeline: Uses the zustand core store map to surgically hydrate React components out of thin air via an injected component registry.
  • CSS-First Theme Compliance: Forces components to strictly utilize your pre-configured CSS Variable tokens, preserving global styling control regardless of the backend payload.
  • Dynamic Prop Bridging: Transparently converts generic JSON attributes into executable React callbacks, typeof verifications, and event handlers.

📦 Installation

npm install @slashand/sdui-blade-react @slashand/sdui-blade-core

Required Peer Dependencies: react, react-dom, zustand

🚀 Quickstart Usage

import { BladeHost } from '@slashand/sdui-blade-react';
import { createBladeStore } from '@slashand/sdui-blade-core';

// 1. Initialize the core agnostic state machine
const store = createBladeStore({
  initialState: {
    bladeId: "ContentGenerationMatrix",
    presentation: { width: "fullscreen", title: "The Matrix Engine" },
    elements: [
      { id: "prompt", type: "TextField", label: "Enter Directive" },
      { id: "invoke", type: "BladeInvokeControl", target: "ParameterBlade" }
    ]
  }
});

// 2. Render the Glass Shell
export default function App() {
  return (
    <div className="blade-shell-container w-full h-full bg-zinc-950">
      <BladeHost store={store} />
    </div>
  );
}

🤝 Contributing

We welcome contributions to the Agnostic Blade System!

  1. Fork the project.
  2. Create your feature branch (git checkout -b feat/CosmicFeature).
  3. Commit your changes (git commit -m 'feat: add CosmicFeature').
  4. Push to the branch (git push origin feat/CosmicFeature).
  5. Open a Pull Request.

🌟 Ecosystem Showcase

Where can you see the Agnostic Blade System in action?

  • Gravity English (Coming Soon, March 2026) -> Educational Prompt-Orchestration Platform.
  • Coverlay Studio (Coming Soon) -> Generative AI Non-Linear Video Editor.

Live production applications utilizing these blades will be showcased here as their respective websites officially launch.

🗺️ React Ecosystem Roadmap

Our specific trajectory for the React wrapper.

  • [x] Core Re-rendering via useSyncExternalStore
  • [ ] React Server Components (RSC) Native Integration
  • [ ] Next.js App Router API Streaming Support
  • [ ] Framer Motion Micro-kinematics Expansion

📜 License

Published under the MIT License. Maintained by Slashand Studio.