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

gitdevlog

v1.0.3

Published

📃 Post-commit CLI logger to keep searchable memory of changes , Logging the Why Behind the What

Readme

📃 gitdevlog — NPM version NPM downloads

A tiny CLI + Git hook that asks: “Why did you really make that commit?”
And then quietly builds a timeline of your thoughts for future you... and your team.


⚡ TL;DR

A post-commit journaling sidekick for your Git workflow.
After each commit, gitdevlog whispers:

Want to log this commit?

You drop a thought or two — a why, a hacky reason, a future warning.
Boom. Logged, timestamped, and searchable forever.


🤔 What is this?

gitdevlog is a lightweight memory layer for developers.

It's not your Git message.
It's the story behind your Git message.

After every Git commit, it politely asks:

Want to log this commit? (leave empty to skip)
Why | Notes: ________________

✅ You jot a short note — about your intent, context, or frustration
✅ It saves that with the commit
✅ Builds a searchable timeline of your reasoning
✅ Helps avoid re-debugging, context loss, and "why the heck did I do this?"


💡 Why?

Because your commit message says:

fix: minor auth redirect

...but your brain meant:

"Spent 2 hours on this weird redirect loop in Safari.
Turns out the state param was missing from the callback URL. Rage."

Let’s capture that. While it’s fresh.

"Git tells you what changed. This tells you why."


💡 MORE Why though?

Let’s be honest: You’ve looked at your own code a week later and thought:

“Wth was I trying to solve here?”

You ?: Same.

Your team? Same.

Your future self? Definitely same. Probably filing a bug report against past-you.

But if you have genuinely solved this memory-gap problem...

We clearly have a lot to discuss. I think we’re both building tools for developers because even superheroes forget why they saved the world , it's deep , —our tools might help developers remember their own genius moments. NOT CRYIINGGG ;( not at ALLLL .

✨ Features

  • 🧠 Post-commit promptwhy and notes
  • 🗃 Local logs → stored in .devlog/logs/
  • 🔍 gitdevlog list → view all past logs
  • 🔎 gitdevlog search <text> → find old context, like "Find that bug note from 2 weeks ago"
  • 🕰️ gitdevlog timeline → generate beautiful Markdown or HTML timelines
  • 🖤 Zero config, works out of the box
  • 📦 Ship as a reusable npm module

🚀 Getting Started

Installation:

npm install -g gitdevlog

Usage:

npx gitdevlog init

☝️ That sets up a post-commit hook for your current repo.

From now on, every commit is followed by:

Want to log this commit?
> Log (why | notes):

✔️ Leave it blank to skip ✍️ Type whatever you want 📦 Done

CLI Commands

npx gitdevlog list

View all past logs

npx gitdevlog search "your search term"

Finds logs that mention “your search term” in any field. Magic.

npx gitdevlog timeline

Generates a Markdown timeline of your logs.

npx gitdevlog timeline --html

Generates a Dark Mode HTML timeline with 🔍 filtering and 🔃 sorting.


🧘 Ideal for:

🧑‍💻 Solo devs who never forgets ;) 👩‍👧‍👦 Teams who want more than "Update" commits 🐛 Debugging what you did last month 🧠 Leaving breadcrumbs for Future You™


🧠 Philosophy

Code is fast. Context is fragile.

We write Git messages for machines and changelogs. gitdevlog is for you. The human. The debugger. The coffee-powered context reclaimer.

🫡 Built With

12 lines of "I'll remember this later"

1 weekend of “let’s just ship it”

🛠️Author:

  • cinfinit — a dev who’s tired of future-me yelling at past-me.

    In nut shell , this is how it actually started:

"You can't remember why you made that commit. I can't either. Let's fix that."