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

sourcedash

v1.1.0

Published

Project handover scanner. Generate practical reports on what is present, what is missing, and what should be fixed first before a repo is easy to maintain.

Readme

SourceDash

Project handover scanner. Generate a practical report on what is present, what is missing, and what should be fixed first before a repo is easy to maintain.

sourcedash scans a local project path or a GitHub repository URL and writes timestamped Markdown and JSON reports to a local history store. It is built for the first maintenance question on an unfamiliar repo: what shape is this project actually in?

What It Does

  • scans a local path or GitHub repository URL
  • checks for package.json, scripts, dependency counts, and whether the project is a CLI
  • checks README.md for install/setup, usage, environment, and license sections
  • detects missing project files such as .env.example, Dockerfile, Docker Compose, and GitHub Actions workflows
  • detects large committed files
  • calculates a config-driven readiness score with warnings and recommendations
  • stores every scan as a separate snapshot in ~/.sourcedash/scans

Requirements

  • Node 22+
  • npm

Install

git clone https://github.com/psandis/sourcedash.git
cd sourcedash
npm install

Quick Start

npm run dev -- scan .
npm run dev -- scan ../myproject
npm run dev -- scan https://github.com/psandis/dietclaw

CLI

All commands are currently run with npm run dev -- <command>.

Scan a local project

npm run dev -- scan .
Scanning ....

Scan complete.
Score: 70/100

Warnings:
  ! No README file found.
  ! .env.example is missing.

Report written to /Users/you/.sourcedash/scans/local/sourcedash/2026-05-21T18-36-51

Scan a GitHub repository

npm run dev -- scan https://github.com/psandis/dietclaw
Cloning https://github.com/psandis/dietclaw...
Clone complete. Scanning...

Scan complete.
Score: 97/100

Warnings:
  ! 1 large file(s) found in the repository.

Report written to /Users/you/.sourcedash/scans/psandis/dietclaw/2026-05-21T17-26-59

Notes:

  • GitHub repositories are cloned into a temporary folder inside the scan output directory
  • the temporary clone is removed automatically after the scan
  • each scan gets a new timestamped folder, nothing is overwritten

Configuration

All scan behavior lives in data/defaults.jsonc — a JSONC file with inline comments explaining every option. No code changes needed to:

  • choose which output formats to write (md, json)
  • change the large file threshold
  • change how many large files to include in the report
  • change ignore patterns
  • change scoring deductions

Current scoring deductions:

  • missing README: 20
  • README missing install/setup section: 8
  • missing test script: 8
  • missing build script: 8
  • missing .env.example: 10
  • large files: 3 points each, capped at 15

CLI projects are not penalized for missing .env.example.

Storage

All reports are stored locally in ~/.sourcedash/scans.

~/.sourcedash/
  scans/
    psandis/
      dietclaw/
        2025-05-21T17-26-59/
          report.md
          report.json
    local/
      sourcedash/
        2025-05-21T18-36-51/
          report.md
          report.json

This keeps scan history over time and avoids overwriting previous results.

File Structure

sourcedash/
├── src/
│   ├── cli.ts                     # CLI entry point
│   ├── core/
│   │   ├── config.ts              # config loading
│   │   ├── store.ts               # report storage path resolution
│   │   └── types.ts               # shared scan result types
│   ├── reports/
│   │   └── markdownReport.ts      # markdown report generator
│   └── scanners/
│       ├── fileScanner.ts         # file presence and large file checks
│       ├── packageScanner.ts      # package.json analysis
│       ├── projectScanner.ts      # scoring and scan orchestration
│       └── readmeScanner.ts       # README section checks
├── data/
│   └── defaults.jsonc             # config-driven scan and scoring rules
├── package.json
├── tsconfig.json
└── README.md

Development

git clone https://github.com/psandis/sourcedash.git
cd sourcedash
npm install
npm run build
npm run dev -- scan .

Related

  • 🦀 Dietclaw — Codebase health monitor
  • 🦀 Dustclaw — Find out what is eating your disk space
  • 🦀 Driftclaw — Deployment drift detection across environments
  • 🦀 Feedclaw — RSS/Atom feed reader and AI digest builder
  • 🦀 Mymailclaw — Email scanner, categorizer, and cleaner
  • 🦀 Psclawmcp — MCP server for the OpenClaw CLI ecosystem
  • 🦀 Speak2text — Transcribe audio and video files using OpenAI Whisper
  • 🦀 Stackscope — Architecture discovery CLI
  • 🦀 Text2speak — Convert text files to audio using OpenAI TTS
  • 🦀 Wiremonitor — Network traffic web dashboard for wirewatch
  • 🦀 Wirewatch — Network traffic monitor with AI-assisted anomaly detection
  • 🦀 OpenClaw — The open claw ecosystem

License

See MIT