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

golastmile

v0.1.2

Published

Ship your vibe-coded projects to production

Readme

LastMile

Ship your vibe-coded projects to production with confidence.

LastMile analyzes your codebase for production readiness gaps and helps you fix them before deploying. Built for developers who move fast but want to ship responsibly.

Two ways to use LastMile:

  • MCP Server - Integrate with Claude Code, Cursor, or any AI assistant
  • CLI - Run directly from your terminal

Quick Start

With AI Assistants (Recommended)

Add LastMile to your AI assistant's MCP configuration:

// Claude Code: ~/.claude/settings.json
{
  "mcpServers": {
    "lastmile": {
      "command": "lastmile-mcp"
    }
  }
}

Then just ask your AI: "Analyze this project for production readiness"

With CLI

# Install
curl -fsSL https://raw.githubusercontent.com/GoLastMile/lastmile/main/install.sh | bash

# Analyze your project
cd your-project
lastmile analyze

Why LastMile?

You've built something amazing with AI-assisted coding. But before it goes live, there are dozens of production concerns to address: security, logging, error handling, CI/CD, and more.

LastMile scans your project and tells you exactly what's missing, with actionable fixes:

  • Security gaps - Input validation, API key handling, rate limiting
  • Testing gaps - Missing tests, no test framework, no coverage
  • Observability gaps - No logging, no error tracking, no metrics
  • CI/CD gaps - No pipeline, no deployment config
  • Dependency issues - Missing lock files, outdated packages

Installation

Homebrew (macOS/Linux)

brew tap golastmile/tap
brew install lastmile

Shell Script

curl -fsSL https://raw.githubusercontent.com/GoLastMile/lastmile/main/install.sh | bash

From Source

git clone https://github.com/GoLastMile/lastmile.git
cd cli && pnpm install && pnpm build

Usage

Analyze

Scan your project for production readiness gaps:

lastmile analyze

Output:

╭────────────────────────────────────────╮
│  Readiness Score: 45/100  Needs Work   │
│    ██████████████░░░░░░░░░░░░░░░░      │
╰────────────────────────────────────────╯

 CRITICAL  1 issue
┌─────────────────────────────────────────────┬────────────────────────────────────────┐
│ ✗ API keys may not be hashed                │ Hash API keys using SHA-256 or bcrypt  │
└─────────────────────────────────────────────┴────────────────────────────────────────┘

 WARNING  3 issues
┌─────────────────────────────────────────────┬────────────────────────────────────────┐
│ ⚠ No test files found                       │ Add tests for critical business logic  │
├─────────────────────────────────────────────┼────────────────────────────────────────┤
│ ⚠ No structured logging                     │ Add pino or winston for logging        │
├─────────────────────────────────────────────┼────────────────────────────────────────┤
│ ⚠ Missing .env.example                      │ Document required environment vars     │
└─────────────────────────────────────────────┴────────────────────────────────────────┘

Fix

Auto-fix detected issues:

# Preview what will be fixed
lastmile fix

# Apply fixes
lastmile fix --apply

Ship

Deploy to cloud platforms (coming soon):

lastmile ship --platform railway
lastmile ship --platform vercel

Supported Stacks

LastMile auto-detects your stack and tailors its analysis:

| Language | Frameworks | |----------|------------| | TypeScript/JavaScript | Next.js, Express, Fastify, Hono | | Python | FastAPI, Django, Flask | | Go | Standard library, Gin, Echo | | Ruby | Rails, Sinatra | | Rust | Actix, Axum |

Commands

| Command | Description | |---------|-------------| | lastmile analyze | Analyze project for production gaps | | lastmile fix | Auto-fix detected issues | | lastmile ship | Deploy to cloud platforms | | lastmile login | Authenticate with LastMile | | lastmile logout | Clear authentication |

Options

-d, --dir <path>    Directory to analyze (default: .)
--json              Output as JSON for CI/CD integration
--no-banner         Skip the ASCII art banner
-v, --verbose       Show detailed analysis

CI/CD Integration

Add LastMile to your CI pipeline:

# .github/workflows/lastmile.yml
name: Production Readiness
on: [push, pull_request]

jobs:
  analyze:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Install LastMile
        run: curl -fsSL https://raw.githubusercontent.com/GoLastMile/lastmile/main/install.sh | bash
      - name: Analyze
        run: lastmile analyze --json

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT


Built with care for developers who ship fast.