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

@axon-ai/dashboard

v1.0.4

Published

Axon dashboard for langchain trace vizualisation, monitoring and debugging

Readme

Axon Dashboard

npm version License: MIT

The @axon-ai/dashboard package provides the interactive web-based user interface for the Axon developer tool. It allows you to visualize, monitor, and debug the execution traces of your AI agents, chains, and models in real-time.

This dashboard is typically launched and managed via the @axon-ai/cli tool, providing a seamless experience for developers to gain insights into their LangChain applications.

✨ Features

  • Real-time Trace Visualization: See your AI agent's execution flow as it happens.
  • Detailed Node Information: Inspect inputs, outputs, tokens, costs, and metadata for each LLM, chain, and tool call.
  • Interactive Graph View: Navigate complex agent workflows with an intuitive, zoomable, and pannable graph.
  • Project Organization: View traces organized by project, making it easy to manage multiple AI applications.
  • Local Development Focus: Designed for quick setup and debugging during local development.

🚀 Getting Started (via Axon CLI)

The Axon Dashboard is part of the Axon developer tool and is best used in conjunction with the @axon-ai/cli and @axon-ai/langchain-tracer packages.

1. Install the Axon CLI

If you haven't already, install the Axon CLI globally:

npm install -g @axon-ai/cli

2. Initialize Your Project

Navigate to your LangChain project directory and initialize Axon:

axon-ai init --project my-langchain-app

This command sets up the necessary configuration files for Axon in your project.

3. Start the Axon Services (Backend & Dashboard)

From your project directory, start the Axon backend and dashboard:

axon-ai start

This command will automatically open the Axon Dashboard in your web browser, usually at http://localhost:5173. It also starts the necessary backend service (provided by @axon-ai/backend) that receives trace data.

4. Integrate the Tracer

Ensure you have integrated @axon-ai/langchain-tracer into your LangChain application to send data to the Axon backend. Refer to the @axon-ai/langchain-tracer README for detailed instructions.

5. Run Your Application

Execute your LangChain application, and watch the traces appear live in the Axon Dashboard!

📊 Understanding the Dashboard

Once traces start flowing, you'll see a visual representation of your agent's execution.

  • Chain Nodes (Blue/Purple): Represent the start and end of a complete agent or chain run.
  • LLM Nodes (Blue): Show interactions with Large Language Models, including prompts, responses, token usage, and estimated costs.
  • Tool Nodes (Green): Display calls to external tools, their inputs, and their outputs.

Click on any node in the graph to view detailed information in the sidebar, helping you understand each step of your AI's decision-making process.

🛠️ Configuration

You can configure the dashboard's port and other settings via the axon-ai start command or by editing the .axon-ai/config.json file in your project root.

Example:

axon-ai start --dashboard-port 8000

🐛 Troubleshooting

If you encounter issues, please refer to the troubleshooting section in the main @axon-ai/cli README for common problems like port conflicts or services not starting.

🤝 Contributing

Contributions are welcome! If you're interested in improving the Axon Dashboard, please see the main Axon repository for contribution guidelines.

📄 License

This project is licensed under the MIT License.