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

@gitcraft/cli

v0.2.1

Published

Craft production-ready releases from your Git history.

Downloads

439

Readme

GitCraft

Craft production-ready releases directly from your Git history.

GitCraft analyzes your commits, determines the correct SemVer bump, applies tags, generates changelogs, and publishes release metadata — all with zero configuration to start.

Features

  • Correct SemVer — Detects breaking changes (feat!, BREAKING CHANGE:) and bumps major, minor, or patch accordingly
  • Release Channels — Auto-maps branches to channels, or override manually
  • Changelog Generation — Generates and prepends to CHANGELOG.md, grouped by commit type
  • Monorepo Support — Independent versioning per package using path filtering
  • Plugin System — Extend with changelog, AI summaries, Slack notifications, and more
  • Azure DevOps — First-class pipeline task with output variables
  • Dry Run Mode — Preview exactly what will happen before committing anything

Installation

npm install -g @gitcraft/cli

Usage

# Preview the next release
gitcraft release --dry-run

# Run a release on the current branch
gitcraft release

# Override the release channel
gitcraft release --channel alpha

# Scope to a subdirectory (monorepo)
gitcraft release --path packages/api

Configuration

Create a gitcraft.config.js in your project root:

module.exports = {
  plugins: [
    'changelog',
    // 'ai-notes',
  ],
}

Writing a Plugin

import type { Plugin } from '@gitcraft/cli'

const myPlugin: Plugin = {
  name: 'my-plugin',
  async onResolved(ctx) {
    // Runs after version is computed, before any git actions
    console.log(`Next version: ${ctx.result.nextVersion}`)
  },
  async onSuccess(ctx) {
    // Runs after tag is pushed
    console.log(`Released ${ctx.result.tag}`)
  },
  async onFailure(err) {
    // Runs if the release fails
    console.error(err)
  },
}

module.exports = { plugins: [myPlugin] }

Azure Pipelines

- task: GitCraft@1
  inputs:
    releaseChannel: 'stable'
    tagPrefix: 'v'

Output Variables

| Variable | Description | | ----------------------- | ------------------------------------- | | GitCraft.Version | The new version number (e.g. 1.2.0) | | GitCraft.Tag | The full git tag (e.g. v1.2.0) | | GitCraft.BumpType | major, minor, or patch | | GitCraft.ReleaseNotes | Changelog entry for this release |

GitHub Actions

- uses: actions/setup-node@v4
  with:
    node-version: '24'

- name: Release
  run: npx @gitcraft/cli release --channel stable

License

MIT