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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@enterwell/changelog-create

v0.3.0

Published

Helps developers make easy notes on changes made to their codebase

Readme

🌱 Introduction

This is the CLI alternative to a Visual Studio and Visual Studio Code extensions developed for the convenience of creating special change files that are used to manage a changelog.

What are the change files? 🤔

Change files are just files located in the changes directory with the following naming scheme:

<change_type> [<change_category>] <change_description>

Acceptable entries for the <change_type> are:

  • Added
  • Changed
  • Deprecated
  • Removed
  • Fixed
  • Security

This decision was inspired by following the principles for keeping a good changelog.

To avoid incorrect file naming and to ease file creation process on the developer, this CLI tool was made for general usage alongside our other helpers:

These files are then processed using our Changelog Manager tool to aggregate changes, generate a new changelog section, and update the application version accordingly.

For the convenience of using this tool to manage a changelog in an automated CI/CD environment we made a GitHub Action and an Azure DevOps extension.

We highly recommend that you read up on how and what exactly is it doing behind the scenes, as well as, learn how to use the .changelog.json configuration file to customize the tool's behaviour.

📖 Table of contents

📝 Usage

Firstly, you can use our GitHub Releases tab to start using this CLI. Link contains pre-built binaries for Windows and Linux.

You can run the binary anywhere in the target project's workspace directory.

If the helper is used in the directory that doesn't contain changes directory to create the change file in, it will automatically search current working directory tree upwards for the nearest changes directory.

The helper functionality is divided into two subcommands:

  • add - add a new change
  • list - list various information about the changes
    • categories - list categories allowed by the configuration
    • changes - list changes created

Add subcommand takes two arguments and one optional input:

  • change type - required
  • change description - required
  • change category - optional (prefixed with either -c or --category)

Example of a call:

cc add [options] <change_type> <change_description>

Arguments:

  • change_type:
    • Change type following the 'Keep a Changelog' guiding principles.
    • Acceptable entries for the <change_type> are:
      • Added
      • Changed
      • Deprecated
      • Removed
      • Fixed
      • Security
      • each of the previous entries can also be specified using only their first letters
    • Acceptable entries are case-insensitive.
  • change_description:
    • Change description that describes the changes made (if the text is longer than a single word, it needs to be quoted).
    • Excess whitespace will be removed.

Options:

  • -v | --version:
    • Shows version information.
  • -c | --category <change_category>:
    • One of the valid change categories (case-insensitive) defined in the configuration file if it exists.
    • Arbitrary if the configuration does not exist or is empty.
      • Can be empty.
      • Excess whitespace will be removed.
    • Needs to be quoted if its longer than a single word.
  • -? | -h | --help:
    • Shows help information.

Changes in the changes directory are just files with the following naming scheme:

<change_type> [<change_category>] <change_description>

[<change_category>] part of the naming is controlled and validated using the .changelog.json configuration file.

And that's it! You should now have a new file created inside the changes folder in your workspace directory! 🎉

You can now let this folder accumulate change entries which will be bundled up into your CHANGELOG.md when you want to create a new application release using our Changelog Manager tool or one of our CI/CD tasks mentioned in the introduction section.

⚙ Configuration file

.changelog.json is a JSON file that is optional. Configuration specifies which change categories are allowed in your project. File needs to be located in the same directory alongside the appropriate CHANGELOG.md file.

If we wanted to allow only 3 different change categories: API, FE (Frontend) and BE (Backend), the configuration would look like:

{
  "categories": [
    "API",
    "FE",
    "BE"
  ]
}

If the configuration exists, helper will deny the creation of change files which ignore every change in the changes directory that does not concur to it. On the other hand, if the configuration file does not exist, every change will be accepted and written to the CHANGELOG.md.

For more features that can be configured using the configuration file, see the Changelog Manager's README.

☎ Support

If you are having problems, please let us know by raising a new issue.

🪪 License

This project is licensed with the MIT License.