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

dep-changelog

v1.1.3

Published

Effortlessly track changes in package.json dependencies and devDependencies over time using Git commit history.

Readme

dep-changelog

A CLI tool to track changes in package.json dependencies and devDependencies over a specified date range using Git commit history.

Features

  • Analyze changes to dependencies and devDependencies in package.json files.
  • Specify a time range to focus on specific commits.
  • Support for multiple output formats:
    • Human-readable (default)
    • JSON
    • CSV
  • Group changes by package name and file path for better clarity.

Installation

Install globally via npm:

npm install -g dep-changelog

Or use it directly with npx:

npx dep-changelog

Usage

Run the tool in a Git repository to analyze dependency changes:

dep-changelog --since <start-date> --until <end-date> [options]

Options

| Option | Alias | Description | Default | |----------------|-------|------------------------------------------------------------------|----------------------------| | --since | -s | Start date for analysis (e.g., 2024-01-01). | Required | | --until | -u | End date for analysis (e.g., 2024-12-31). | Required | | --output | -o | Output file path for results. | dependency_changes.csv | | --format | -f | Output format (human, json, csv). | human | | --help | | Show help information. | |

Examples

  1. Default Human-Readable Format:

    dep-changelog --since 2024-01-01 --until 2024-12-31
  2. Output in JSON Format:

    dep-changelog --since 2024-01-01 --until 2024-12-31 --format=json --output=changes.json
  3. Output in CSV Format:

    dep-changelog --since 2024-01-01 --until 2024-12-31 --format=csv --output=changes.csv

Output Formats

Human-Readable Format (Default)

## docs/accessibility/package.json:
### dependencies
- some-library
      - 2024/01/05: Added version 1.0 (#commit-hash)
      - 2024/02/04: Modified version 1.0 -> 1.2
### devDependencies
- another-library
      - 2024/01/05: Added version 1.0 (#commit-hash)
      - 2024/02/04: Modified version 1.0 -> 1.2

JSON Format

[
  {
    "packageName": "some-library",
    "filePath": "docs/accessibility/package.json",
    "dependencyType": "dependency",
    "changeType": "added",
    "commitDate": "2024-01-05",
    "newVersion": "1.0",
    "commitHash": "commit-hash"
  },
  ...
]

CSV Format

Library Name,Package Path,Dependency Type,Change Type,Commit Date,Previous Version,New Version
some-library,docs/accessibility/package.json,dependency,added,2024-01-05,,1.0
some-library,docs/accessibility/package.json,dependency,modified,2024-02-04,1.0,1.2

Testing

To test the project, ensure Jest is installed and run:

npm test

Contribution

Contributions are welcome! Please:

  1. Fork the repository.
  2. Create a feature branch.
  3. Submit a pull request with a clear description of changes.

License

This project is licensed under the MIT License.