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

dashdev

v0.2.0

Published

Local development dashboard — services, workflows, CI/CD, Redis, and git repos in one place

Downloads

12

Readme

DashDev

A local development dashboard that brings together your services, workflows, CI/CD, Redis, and git repos into one interface. Runs as a background service on your machine.

Dashboard

Install

npm install -g dashdev

Usage

dashdev start       # Start the server in the background
dashdev stop        # Stop the server
dashdev restart     # Restart the server
dashdev status      # Check if running
dashdev open        # Open dashboard in browser

Dashboard runs at http://localhost:3847.

Auto-start on login (macOS)

dashdev install     # Register as launchd service
dashdev uninstall   # Remove auto-start

Features

Service Monitor

Track and manage local services (databases, APIs, workers). See health status at a glance, start/stop with one click, and view logs.

  • Port-based and HTTP health checks
  • Import services from backendctl files
  • Service groups for bulk start/stop
  • Real-time health polling via WebSocket

Services

Workflows

Create multi-step workflows visually. Add commands from a template sidebar, chain them in sequence or parallel, and configure parameters.

  • 25+ command templates across Shell, Docker, K8s, Node, Git, Redis, HTTP
  • Drag-and-drop step ordering
  • Parameter auto-detection from ${PLACEHOLDER} syntax
  • Run with custom inputs via parameter modal

Workflows

Workflow Builder

CI/CD

View your GitHub pull requests, review requests, and CI runs in one place. No more switching between browser tabs.

  • My PRs with review status and CI checks
  • PRs awaiting your review
  • Recent CI/CD runs across repos

Redis Explorer

Browse and edit Redis keys without a CLI. Supports all data types.

  • Key browser with pattern filtering
  • View/edit string, hash, list, set, sorted set values
  • Server info dashboard (memory, clients, uptime)
  • TTL display and key deletion

Git Repos

Track all your local repositories from one screen. See which repos have uncommitted changes, which branches you're on, and who's ahead or behind.

  • Add repos manually or scan a directory
  • Branch, changes, ahead/behind at a glance
  • One-click fetch and pull
  • Last commit info

Run History

Full history of every workflow run with duration, status, step-by-step logs, and exit codes.

Configuration

| Environment Variable | Default | Description | |---------------------|---------|-------------| | DEVDASH_PORT | 3847 | Server port | | DEVDASH_REDIS_URL | redis://localhost:6379 | Redis connection URL |

All data is stored in ~/.devdash/:

  • devdash.db — SQLite database (services, workflows, runs, settings)
  • workflows/ — YAML and JS workflow files (auto-synced)
  • devdash.pid — PID file for background daemon

Adding Workflows

Drop .yml or .js files into ~/.devdash/workflows/. DevDash picks them up automatically.

# ~/.devdash/workflows/deploy.yml
name: Deploy
steps:
  - name: Run tests
    command: npm test
  - name: Build
    command: npm run build
  - name: Deploy
    command: ./scripts/deploy.sh

Or create workflows from the UI using the visual workflow builder.

Development

git clone https://github.com/sarthikbhat/DashDev.git
cd DashDev
npm install
cd ui && npm install && cd ..
npm run dev:all

This starts the backend (with hot reload) and Vite dev server concurrently.

Tech Stack

  • Backend: Node.js, Express, Socket.IO, better-sqlite3
  • Frontend: React 18, Vite, TypeScript
  • Storage: SQLite (local), no external database required

License

MIT