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

@xpell/xdashboard

v0.1.0-alpha.1

Published

Dashboard XUI component library for Xpell UI

Readme

@xpell/xdashboard

npm downloads license types xpell

XDashboard is an official dashboard UI component pack for Xpell 2 Alpha, built on top of @xpell/ui.

It provides dashboard-oriented components and layout primitives for:

  • Admin panels & internal tools
  • Monitoring & observability UIs
  • Analytics dashboards
  • Builder interfaces (e.g. VIBE)

Xpell is a runtime interpreter for dynamic systems.
@xpell/xdashboard is a structured UI object pack that composes dashboards using JSON.


✨ Highlights

  • Built for Xpell 2: works with Nano-Commands + JSON-driven views
  • UI-only pack: ships components, not runtime logic
  • Single CSS output: predictable bundling (xdashboard.css)
  • ESM + CJS: modern + compatible builds
  • Types included: .d.ts declarations in dist/types

📦 Install

pnpm add @xpell/xdashboard

Peer dependencies (required by the consumer app):

pnpm add @xpell/ui @xpell/core

🚀 Quick Start

import { _x } from "@xpell/core";
import { XUI } from "@xpell/ui";
import { XDashboardPack } from "@xpell/xdashboard";

// Optional (recommended): include dashboard styles once
import "@xpell/xdashboard/xdashboard.css";

async function main() {
  _x.verbose = true;
  await _x.start();

  await _x.loadModule(XUI);
  await _x.loadObjectPack(XDashboardPack);

  XUI.createPlayer("xplayer");

  XUI.add({
    _type: "view",
    _id: "dashboard-home",
    _children: [
      {
        _type: "xd-card",
        _title: "Welcome to Xpell 2",
        _content: "Your dashboard is running."
      }
    ]
  });
}

main();

🎨 Styles

This package outputs a single CSS file:

import "@xpell/xdashboard/xdashboard.css";

🧱 What’s inside?

@xpell/xdashboard is designed as a pure UI object pack:

  • Extends @xpell/ui primitives
  • Adds dashboard-specific components (cards, layouts, widgets, etc.)
  • Follows Nano-Commands v2 contract
  • Contains no runtime logic (behavior lives in Xpell runtime/modules)

🔁 Versioning & Stability

Current version: 0.1.0-alpha.1

This package is part of the Xpell 2 Alpha release cycle.

  • Breaking changes may occur while APIs stabilize
  • Once stable, we’ll move toward beta and 1.0

🧩 Xpell 2 Ecosystem

Core packages:

  • @xpell/core
  • @xpell/ui
  • @xpell/node
  • @xpell/3d
  • @xpell/xdashboard

🔗 Links

  • Website: https://xpell.ai
  • Docs: (coming soon)
  • Issues: (link your GitHub issues page here)
  • Discussions: (optional)

Tip: once the repo URL is final, add it to package.json (repository, bugs, homepage) for the best npm page.


🛡️ License

MIT


👤 Author

Tamir Fridman
Xpell 2 Alpha — 2026