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

monforge

v1.0.0

Published

๐Ÿ“Š Production Monitoring CLI โ€” unified dashboard for Sentry, Crashlytics, app store reviews

Readme

๐Ÿ“Š MonForge - Production Monitoring CLI

Unified production monitoring dashboard for Sentry, Crashlytics, App Store reviews, and Google Play โ€” all in your terminal.

Features

  • 4 Providers: Sentry, Firebase Crashlytics, App Store Connect, Google Play Developer API
  • Unified Dashboard: Crash rates, ANR, error counts, ratings in one view
  • Error Explorer: Top errors/crashes sorted by frequency and impact
  • Review Viewer: Browse app store reviews by platform (iOS/Android)
  • Custom Alerts: Set threshold rules for crash rates, ratings, ANR
  • Health Reports: Generate markdown or plain text reports
  • Easy Config: Simple key-value provider configuration stored at ~/.monforge/

Quick Start

# Install globally
npm install -g monforge

# Configure Sentry
monforge config set sentry.authToken <your-sentry-token>
monforge config set sentry.orgSlug <your-org>
monforge config set sentry.projectSlug <your-project>

# View health dashboard
monforge status

Commands

Status Dashboard

# Unified health view (crash rate, ANR, ratings, errors)
monforge status

Errors

# List top errors from all monitoring providers
monforge errors

# Limit results
monforge errors --limit 5

Reviews

# All reviews
monforge reviews

# Platform-specific
monforge reviews ios
monforge reviews android

Alerts

# Set alert rules
monforge alerts set "crash-rate > 1"
monforge alerts set "rating < 4.0"
monforge alerts set "anr-rate >= 0.5"

# List active rules
monforge alerts list

# Remove a rule
monforge alerts remove <rule-id>

Reports

# Generate markdown report
monforge report

# Plain text format
monforge report --format txt

# Save to file
monforge report --output health-report.md

Configuration

# Sentry
monforge config set sentry.authToken <token>
monforge config set sentry.orgSlug <org>
monforge config set sentry.projectSlug <project>

# Firebase Crashlytics
monforge config set crashlytics.projectId <project-id>
monforge config set crashlytics.authToken <token>

# App Store Connect
monforge config set appstore.appId <app-id>

# Google Play
monforge config set playstore.appId <package-name>
monforge config set playstore.authToken <token>

# View config
monforge config list
monforge config get sentry.orgSlug

Providers

| Provider | Data | Config Required | |----------|------|----------------| | Sentry | Errors, crash-free rate, issue tracking | authToken, orgSlug, projectSlug | | Crashlytics | Crashes, ANR, crash-free users | projectId, authToken | | App Store | iOS reviews, ratings | appId | | Google Play | Android reviews, ratings | appId, authToken |

Alert Metrics

| Metric | Description | Example | |--------|-------------|---------| | crash-rate | Crash rate percentage | crash-rate > 1 | | anr-rate | ANR rate percentage | anr-rate >= 0.5 | | rating | Average app rating | rating < 4.0 | | error-count | Total error count | error-count > 1000 | | review-rating | Review rating average | review-rating < 3.5 |

Requirements

  • Node.js 20+

License

MIT