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

@argus-vrt/web

v0.1.1

Published

**CLI tool for deploying and managing the Argus web dashboard.**

Downloads

221

Readme

@argus-vrt/web

CLI tool for deploying and managing the Argus web dashboard.

The Argus web dashboard is a self-hosted review interface for visual regression test results — similar to Chromatic, but self-hosted. This package provides an interactive CLI to set up and manage the dashboard via Docker.

Quick Start

# Run the interactive setup wizard
npx @argus-vrt/web init

# Start the dashboard
npx @argus-vrt/web start

# Open http://localhost:3000

The init wizard generates a docker-compose.yml, .env, and optionally nginx.conf in an ./argus/ directory.

Prerequisites

  • Docker installed and running
  • Node.js >= 20 (for running the CLI via npx)

Commands

npx @argus-vrt/web init

Interactive setup wizard. Prompts for:

  • PostgreSQL — include a container (recommended) or use an external instance
  • Port — default 3000
  • Domain — custom domain or localhost
  • HTTPS — Let's Encrypt, custom certificate, or none
  • Reverse proxy — include an Nginx container or manage yourself
  • Screenshots path — where uploaded screenshots are stored

Generates configuration files into ./argus/ (or --dir <path>).

npx @argus-vrt/web start

Start Argus containers (docker compose up -d).

npx @argus-vrt/web stop

Stop Argus containers (docker compose down).

npx @argus-vrt/web logs

Stream container logs (docker compose logs -f).

npx @argus-vrt/web logs --service web    # only web container
npx @argus-vrt/web logs --service db     # only database

npx @argus-vrt/web status

Show container status and run a health check on the web dashboard.

npx @argus-vrt/web upgrade

Pull the latest Docker images and restart containers.

npx @argus-vrt/web upgrade

Options

All management commands (start, stop, logs, status, upgrade) accept:

| Flag | Description | |------|-------------| | -d, --dir <path> | Path to the Argus directory (default: ./argus) |

Connecting the CLI

Once the dashboard is running, point the testing CLI at it by adding apiUrl to your project's .argus.json:

{
  "apiUrl": "http://localhost:3000"
}

Then upload results after running tests:

npx argus test

Environment Variables

The generated .env file supports:

| Variable | Default | Description | |----------|---------|-------------| | PORT | 3000 | Server port | | DATABASE_URL | (auto) | PostgreSQL connection string (external DB only) | | DB_PASSWORD | argus | Database password (container DB only) | | SCREENSHOTS_PATH | ./argus-data/images | Path to screenshots directory |

Docker Image

The web dashboard is distributed as a Docker image on GitHub Container Registry:

ghcr.io/maxcwolf/argus-web:latest

License

MIT