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

alittlejacket

v3.3.1

Published

Readme

Angular commit convention:

Patch Release (1.0.1)

The chore(ci): ... commit message should trigger patch release.

git commit -m "chore(ci): setup CI"

Bug fixing

For example, if we fix a bug, we should commit code with message that starts with fix(what): ....

git commit -m "fix(log): fixed logging call"

Minor (Feature) Release (1.1.1)

A commit that adds a new feature should start with feat(what): ....

git commit -m "feat(release): semantic release FTW"

Major (Breaking) Release (2.0.0)

Any commit that breaks existing API should have BREAKING CHANGE text somewhere inside the commit message text.

git commit -m "perf(pencil): remove graphiteWidth option
               
               BREAKING CHANGE: The graphiteWidth option has been removed. The default graphite width of 10mm is always used for performance reason."

Normal commit

If yu do not want to release a new version, just commit with regular text that does not start with fix, feat, etc.

The CI job needs to authenticate with both NPM registry to publish, and with GitLab itself to push new tag.

What should be done by Semantic-release-gitlab?

the actual commit log parsing, version increment, publishing new version and tagging the release is done by the module semantic-release-gitlab

NPM Config

  1. The npm token can only be defined in the environment as NPM_TOKEN, because that's where npm itself is going to read it from.
  2. In order to publish to a different npm registry you can specify that inside the package.json's publishConfig field.

Why is the package.json's version not updated in my repository?

While this entirely true the version number doesn’t have to be checked into source control. semantic-release takes care of the version field right before npm publish uses it – and this is the only point where it really is required.

NPM Publish

npm publish --tag dev npm install human-data-range@dev

publishing a new version to npm

  • change the version in package.json
  • then run npm publish or npm version

npm version patch: to bump the last number npm version minor: to bump the middle number npm version major: to bump the first number

if you fix a bug in your module, the correct way to make a new release whould be to run: npm version patch npm publish

versioning in a repository my project at v0.1.0 that's what's in my package.json file in my master branch.

  • update version
  • write a changelog
  • Lint/test source code
  • compile/build code
  • save the the version number
  • tag the lastest commit
  • push the commit and the tag