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

@dnzn/dxkit

v0.1.4

Published

DxKit — A headless microframework for building composable dapps.

Downloads

644

Readme

DNZN // DxKit

A headless microframework for building composable dapps. Routing, lifecycle management, event bus, plugin registry — zero DOM ownership.

by Denizen. // dnzn.wei

Release Info

Project Status

| STATUS | VERSION | AUDIT | |:---|:---|:---| | vibe/alpha | 0.1.0 | Self Review |

This is alpha software. Let it bake. Do not trust in production without thorough testing and review.

No warranty.

Installation

Framework

npm install @dnzn/dxkit

Plugins

npm install @dnzn/dxkit-auth
npm install @dnzn/dxkit-wallet
npm install @dnzn/dxkit-settings
npm install @dnzn/dxkit-theme

Documentation

Framework

| DOCUMENT | DESCRIPTION | |----------|-------------| | Getting Started | Framework overview, core concepts, lifecycle, config, full sample project | | Dapp Development | Manifest, lifecycle events, context, settings, sub-routing, standalone mode | | Plugin Development | Plugin interface, init lifecycle, custom events, duck-typing, full example | | System Internals | Architecture, sequence diagrams, router/lifecycle/event bus internals | | Events Reference | Complete event catalog with payloads, organized by source | | API Reference | All factory functions, interfaces, and type definitions | | Cookbook | Patterns & recipes — DxKit by example |

Plugins

| DOCUMENT | DESCRIPTION | |----------|-------------| | @dxkit/wallet | Wallet providers, EIP-1193, local dev, custom providers | | @dxkit/auth | Passthrough auth, wallet bridging | | @dxkit/theme | CSS theming, light/dark/system, DOM integration | | @dxkit/settings | Key-value store, sections, form generation, dapp toggles |

Development

Common Helpers

make setup          # Install dependencies and initialize development environment
make build          # Build dxkit + all plugins -> dist/ + plugins/*/dist/
make test           # Lint + run all tests (vitest + happy-dom)
make test-watch     # Lint + run tests in watch mode
make lint           # Run biome check
make lint-fix       # Run biome check with auto-fix
make lint-format    # Run biome format with auto-fix
make clean          # Remove all dist/ directories
make superclean     # Remove all dist/ and node_modules/ directories
make audit          # Run pnpm audit, semgrep SAST, and gitleaks secret detection

Tests run the standalone vitest config (vitest.config.ts) with happy-dom for DOM APIs.

Build System

Each package (core + plugins) uses tsup to produce three output formats from a single TypeScript entry point:

| FORMAT | PATH | PURPOSE | |--------|------|---------| | ESM | dist/index.js | Modern import/export — bundlers, Node.js, <script type="module"> | | CJS | dist/index.cjs | CommonJS require() — legacy Node.js tooling | | IIFE | dist/index.global.js | Self-contained <script> tag — no bundler required, good for IPFS/etc |

The exports field in each package.json maps consumers to the right format automatically. IIFE builds attach to a global (DxKit, DxWallet, DxAuth, DxTheme, DxSettings) for use in static HTML without a build step — the primary deployment target for dapps served from IPFS or file:///.

Plugin IIFE builds bundle dxkit core inline (noExternal: ['dxkit']). ESM/CJS builds declare it as external to avoid duplication when used with a bundler.

License

MIT — see LICENSE.