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

@vestfoldfylke/vfk-cli

v2.1.0

Published

A command line interface for our pleasure

Readme

vfk-cli

A command line interface for our pleasure

vfk-cli will help you create a beautiful pull request and release based on conventional commits. Conventional commits are commits that follow the Conventional Commits Specification.

Supported conventional commit types:

  • Maintenance (🛠): test, style, docs, chore, refactor
  • Patch (🐛): fix, perf, patch
  • Minor (✨): feat, minor
  • Major (🚨): breaking change, breaking, major, feat!, fix!

If a commit does not start with one of the supported conventional commit types, it will be put under Other commits section in the changelog.

Supported project types:

  • Node.js (package.json, package-lock.json)
  • dotnet (*.csproj first one with tag)

vfk pr [patch|minor|major]

Create a pull request with a version bump and changelog based on conventional commits since last release. If no previous release is found, it will create an initial release with version 1.0.0.

Steps performed:

  • Check current branch is NOT default branch and that current branch is up-to-date with origin and has no uncommitted changes
  • Determine and get project information (supports Node.js and dotnet projects)
  • Run tests to ensure code is working before creating PR
  • Get and analyze commits since last release tag (if no tag found, will create initial release)
    • If no commits found, will exit with error message
    • If chosen pr type is lower than the highest type found in commits, will exit with error message
  • Find latest version tag
  • Determining new version based on chosen pr type, commits found and latest version tag
  • Bump project version file(s)
    • Node.js: package.json, package-lock.json
    • dotnet: *.csproj (the first one found that contains a tag)
  • Commit version bump and push to origin
  • Generate changelog based on commits found
  • Create pull request link with title and description (changelog)

Usage

vfk pr patch
vfk pr minor
vfk pr major

vfk release

Create a release with changelog based on conventional commits since last release. Will create a release draft on GitHub with changelog and tag the release commit.

Steps performed:

  • Check current branch is default branch and that current branch is up-to-date with origin and has no uncommitted changes
  • Run tests to ensure code is working before creating release
  • Find latest version tag
  • Get and analyze commits since last release tag (if no tag found, will create initial release)
    • If no commits found, will exit with error message
  • Determining new version based on latest version tag and project version
  • Generate release notes based on commits found
  • Create release draft link with title, description (release notes) and tag

Usage

vfk release
vfk rel

Development

  • Clone or fork repo
  • `npm i``
  • npm link This will make the vfk command point to your local project (uninstall @vestfoldfylke/vfk-cli first, if it does not work)
  • Test usage on some dummy repo from GitHub
  • Remember npm run build before testing the cli when you have made changes