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

@aaaaorg/lockdiff

v0.1.0

Published

Human-readable diffs for package-lock.json changes between git refs

Readme

lockdiff

Human-readable diffs for package-lock.json changes between git refs. Perfect for PR reviews and CI pipelines.

Install

npm install -g @aaaaorg/lockdiff
# or use directly
npx @aaaaorg/lockdiff main

Usage

# Compare current lockfile vs a branch/tag
lockdiff main
lockdiff v1.0.0

# Compare two specific refs
lockdiff v1.0.0 v2.0.0

# Compare two files directly
lockdiff --file old-lock.json new-lock.json

# Output as markdown (great for CI PR comments)
lockdiff main --format markdown

# Output as JSON
lockdiff main --format json

# Only show major version bumps
lockdiff main --major-only

Example Output

📦 lockdiff: main → HEAD

  ➕ Added (3):
    zod                                      3.22.4
    @types/node                              20.11.5
    prettier                                 3.2.4

  ⬆️  Upgraded (2):
    typescript                               5.3.2 → 5.3.3
    eslint                                   8.56.0 → 9.0.0  (MAJOR)

  ⬇️  Downgraded (1):
    webpack                                  5.90.0 → 5.89.0

  ➖ Removed (1):
    tslint                                   6.1.3

  Summary: +3 added, 2 upgraded (1 major), 1 downgraded, 1 removed

CI Integration

Add to your GitHub Actions workflow to auto-comment lockfile changes on PRs:

- name: Lockfile diff
  run: npx @aaaaorg/lockdiff origin/main --format markdown >> $GITHUB_STEP_SUMMARY

Programmatic API

import { parseLockfile, diffDeps, format } from '@aaaaorg/lockdiff';

const oldDeps = parseLockfile(oldLockContent);
const newDeps = parseLockfile(newLockContent);
const result = diffDeps(oldDeps, newDeps);
console.log(format(result, 'table', 'v1', 'v2'));

Supports

  • package-lock.json v1, v2, and v3
  • Scoped packages (@scope/package)
  • Major version bump detection

License

MIT