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

@dodatech/echelon

v0.1.0

Published

Consolidated CLI for DodaTech's internal development platform

Downloads

24

Readme

Echelon

Consolidated CLI for DodaTech's internal development platform. Replaces per-project Bash tooling with a single globally-installed binary.

Installation

npm install -g @dodatech/echelon

Quick Start

# Initialize in an existing git repo
echelon init

# Start work on a GitHub issue
echelon forge start https://github.com/org/repo/issues/42

# Create a PR when done
echelon forge finish --classification ship

# Check status of all epics
echelon forge status

# Create a release
echelon forge release patch

# Validate setup
echelon doctor

Commands

Forge Workflow

| Command | Description | |---------|-------------| | forge start <issue-url> | Create branch from GitHub issue, push to remote | | forge finish | Create PR with merge classification label | | forge status | Show active epics and PR status | | forge release <patch\|minor\|major> | Semantic version bump, annotated tag, push | | forge handoff | Clean client-ready repo sync |

Project Management

| Command | Description | |---------|-------------| | init | Initialize .echelon/ config in current project | | doctor | Validate project setup and dependencies | | migrate | Migrate config/state from older formats |

Common Flags

  • --json — Machine-readable JSON output
  • --dry-run — Preview without making changes (where applicable)
  • --verbose / -v — Show verbose output

Configuration

Echelon uses .echelon/echelon.yaml for project configuration:

project:
  name: "My Project"

git:
  default_branch: main

forge:
  runtime:
    package_manager: pnpm
    test_command: "pnpm test"

  pr:
    default_classification: ask  # ship | show | ask

  handoff:
    target_repo: "https://github.com/client/repo.git"
    exclude_patterns:
      - "internal-docs/"

See templates/echelon.yaml for a full template with all options.

Authentication

GitHub access uses this cascade (first match wins):

  1. GH_TOKEN environment variable
  2. GITHUB_TOKEN environment variable
  3. gh auth token (GitHub CLI)

Merge Classifications

PRs are labeled with merge intent:

  • ship — merge immediately after CI passes
  • show — ready for review, merge after approval
  • ask — needs discussion before merging

Migration

Coming from .forge/ scripts or an older Echelon setup:

echelon migrate

This converts old config formats and state files to the current schema.

Development

pnpm install
pnpm build
pnpm test
./bin/dev.js <command>

License

Private — DodaTech internal use only.