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

@akaoio/dashboard

v1.0.2

Published

Real-time Living Agent Network Dashboard - Core technology for visualizing distributed systems

Downloads

13

Readme

@akaoio/dashboard

Real-time Living Agent Network Dashboard - Core technology for visualizing distributed systems.

Features

  • 🌐 Real-time P2P monitoring via @akaoio/air
  • 🤖 Living Agent tracking across 34 agents in 13 teams
  • 💬 Live message streaming with distributed broadcast
  • 📊 Comprehensive metrics collection and visualization
  • 🖥️ Beautiful TUI built with @akaoio/tui
  • 🔒 Secure communication using @akaoio/gun (our fork, not the original)
  • High performance compiled with @akaoio/builder
  • Battle-tested with @akaoio/battle framework

Installation

npm install @akaoio/dashboard

Usage

CLI

# Run with TUI interface
npx dashboard

# Run with simple console output
npx dashboard --simple

# Custom configuration
npx dashboard --peers "https://peer1.com/gun,https://peer2.com/gun" --title "My Dashboard"

Programmatic API

import { Dashboard, LiveDashboard } from '@akaoio/dashboard';

// Simple dashboard
const dashboard = new Dashboard({
  peers: ['https://air.akao.io:8765/gun'],
  title: 'My Network Dashboard'
});

await dashboard.start();

// TUI dashboard
const liveDashboard = new LiveDashboard({
  peers: ['https://air.akao.io:8765/gun']
});

await liveDashboard.start();

Components

import { 
  AgentTracker, 
  MessageFeed, 
  NetworkMonitor, 
  MetricsCollector 
} from '@akaoio/dashboard';
import Gun from '@akaoio/gun';

const gun = Gun({ peers: ['https://air.akao.io:8765/gun'] });

// Track agents
const tracker = new AgentTracker(gun);
await tracker.start();
const agents = tracker.getOnlineAgents();

// Monitor messages
const feed = new MessageFeed(gun);
await feed.start();
feed.on('message', (msg) => console.log(msg));

// Network monitoring
const monitor = new NetworkMonitor(gun);
await monitor.start();
const health = monitor.getNetworkHealth();

// Collect metrics
const collector = new MetricsCollector(gun);
await collector.start();
const metrics = collector.getMetrics();

Keyboard Shortcuts (TUI Mode)

  • Q / Ctrl+C - Quit
  • R - Clear messages
  • H - Show help
  • Tab - Switch focus
  • Arrow Keys - Navigate

Architecture

@akaoio/dashboard is built on top of our core technologies:

  • @akaoio/tui - Terminal UI framework for beautiful dashboards
  • @akaoio/air - P2P communication layer
  • @akaoio/gun - Our enhanced fork of GUN for distributed data
  • @akaoio/battle - Testing framework
  • @akaoio/builder - TypeScript compilation

Development

# Build
npm run build

# Development mode
npm run dev

# Test with @akaoio/battle
npm test

# Run dashboard locally
npm start

API Reference

Dashboard

Main dashboard orchestrator class.

new Dashboard(config?: DashboardConfig)

LiveDashboard

Advanced TUI-based dashboard with full @akaoio/tui integration.

new LiveDashboard(config?: DashboardConfig)

Configuration

interface DashboardConfig {
  title?: string;
  width?: number;
  height?: number;
  peers?: string[];
  gunOptions?: any;
  theme?: DashboardTheme;
  refreshInterval?: number;
}

Contributing

This is a core @akaoio technology. All contributions must:

  1. Use @akaoio/builder for compilation
  2. Test with @akaoio/battle
  3. Follow source-first development
  4. Never create trash files in project root
  5. Maintain backward compatibility

License

MIT

Credits

Built with ❤️ using the @akaoio technology stack.