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

wdyd

v0.4.0

Published

A node CLI utility to write via CLI & Interactive interface great commit message (conventional commit guidelines)

Downloads

10

Readme

WDYD - What Did You Do?

npm

A node CLI utility to write via CLI & Interactive interface great commit message (conventional commit guidelines).

This utility will guide you to create a great commit message, body & footer following the Conventional Commits guideline. Communication & transparancy is the key when you are working in an AGILE env or in a team.

Goal

Increase the knoledge across the community and the opensource world for the conventional commits standard.

Getting Started

Installation

npm i -g wdyd

How to use it

Go to your project directory, add your changes via git add command.

There are two mode to run WDYD: interactive and manual.

Interactive

Run the following command:

wdyd interactive

It will ask you couple of questions regarding what did you do in your projects, what have you changed and why, as follow:

- What scope did you focus on?
- Describe your change in an emperative way:
- Include the motivation for the change and contrast this with previous behavior:
- Type The footer should contain any information about Breaking Changes and is also the place to reference GitHub issues that this commit Closes:

At the end of the questions it will generate a commit printing out the stdout.

Manual

Run the following command to get a list of commands: wdyd -h

Usage: wdyd [options] [command]

What Did You Do - A node CLI utility to write via interface great commit message (conventional commit guidelines)

Options:
  -V, --version                               output the version number
  -h, --help                                  display help for command

Commands:
  build <scope> <subject> [body] [footer]     Changes that affect the build system or external dependencies (example scopes:
                                              gulp, broccoli, npm)
  chore <scope> <subject> [body] [footer]     Upgrading, migrating, deprecating a dependency or packages
  ci <scope> <subject> [body] [footer]        Changes to our CI configuration files and scripts (example scopes: Travis,
                                              Circle, BrowserStack, SauceLabs)
  docs <scope> <subject> [body] [footer]      Documentation only changes
  feat <scope> <subject> [body] [footer]      A new feature
  fix <scope> <subject> [body] [footer]       A bug fix
  perf <scope> <subject> [body] [footer]      A code change that improves performance
  refactor <scope> <subject> [body] [footer]  A code change that neither fixes a bug nor adds a feature
  revert <scope> <subject> [body] [footer]    Going back specifying what went wrong and when
  style <scope> <subject> [body] [footer]     Changes that do not affect the meaning of the code (white-space, formatting,
                                              missing semi-colons, etc)
  test <scope> <subject> [body] [footer]      Adding missing tests or correcting existing tests
  interactive                                 Create your commit in a interactive env
  help [command]                              display help for command

In order to get a command documentation you can run:

wdyd build -h

Example

Let's say I made some changes on a new feature:

wdyd feat api 'add user auth services'

Or, if I need to update a dependency that might lead to some deprecations:

wdyd chore '!deps' 'upgrade to react18' 'Alignment with other microfrontends repositories' 'BREAKING CHANGE: no more class components'

Notes

A lot of references are taken from conventional commits projects & plugin for VSCode.

Author

@thejoin95