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

lets-release

v8.1.0

Published

Run automated workspace packages releasing

Readme

Let's Release

lets-release is modified from semantic-release.

lets-release automates the whole package release workflow including: determining the next version numbers, generating the release notes, and publishing the packages.

Differences from semantic-release

How does it work?

Commit message format

lets-release uses the commit messages to determine the consumer impact of changes in the codebase. Following formalized conventions for commit messages, lets-release automatically determines the next version numbers, generates changelogs and publishes the releases.

By default, lets-release uses Conventional Commits. The commit message format can be changed with the preset or config options of the @lets-release/commit-analyzer and @lets-release/release-notes-generator plugins.

Tools such as commitizen or commitlint can be used to help contributors and enforce valid commit messages.

Automation with CI

lets-release is meant to be executed on the CI environment after every successful build on the release branch. This way no human is directly involved in the release process and the releases are guaranteed to be unromantic and unsentimental.

Triggering the release process

For each new commit added to one of the release branches (for example: main, next, beta), with git push or by merging a pull request or merging from another branch, a CI build is triggered and runs the lets-release command to make releases if there are codebase changes that affect functionalities of any packages.

Node version

lets-release is only tested with node.js later than version 22.12.0, so the supported range is defined in the engines.node property of the package.json of our packages as >=22.12.0.

Git version

lets-release uses Git CLI commands to read information about the repository such as branches, commit history and tags. Certain commands and options (such as the --merged option of the git tag command or bug fixes related to git ls-files) used by lets-release are only available in Git version 2.7.1 and higher.

Git authentication

lets-release requires push access to the project Git repository in order to create Git tags.

The Git authentication can be set with one of the following environment variables:

| Variable | Description | | ----------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | GH_TOKEN or GITHUB_TOKEN | A GitHub personal access token. | | GL_TOKEN or GITLAB_TOKEN | A GitLab personal access token. | | BB_TOKEN or BITBUCKET_TOKEN | A Bitbucket personal access token. | | BB_TOKEN_BASIC_AUTH or BITBUCKET_TOKEN_BASIC_AUTH | A Bitbucket personal access token with basic auth support. For clarification user:token has to be the value of this env. | | GIT_CREDENTIALS | URL encoded Git username and password in the format <username>:<password>. The username and password must each be individually URL encoded, not the : separating them. |

Alternatively the Git authentication can be set up via SSH.

Git environment variables

| Variable | Description | Default | | --------------------- | ----------------------------------------------------------------------------------------------- | -------------------------------------- | | GIT_AUTHOR_NAME | The author name associated with the Git release tag. See Git environment variables. | lets-release[bot]. | | GIT_AUTHOR_EMAIL | The author email associated with the Git release tag. See Git environment variables. | lets-release[bot] email address. | | GIT_COMMITTER_NAME | The committer name associated with the Git release tag. See Git environment variables. | lets-release[bot]. | | GIT_COMMITTER_EMAIL | The committer email associated with the Git release tag. See Git environment variables. | lets-release[bot] email address. |

Plugins

Plugin steps

A plugin is a npm module that can implement one or more of the following steps:

| Step | Description | Context | Return | | ------------------ | ----------------------------------------- | --------------------------- | ------------------------ | | findPackages | Find all packages | FindPackagesContext | FindPackagesResult | | verifyConditions | Verify release conditions | VerifyConditionsContext | | | analyzeCommits | Analyze commits to determine release type | AnalyzeCommitsContext | AnalyzeCommitsResult | | verifyRelease | Verify if the release can proceed | VerifyReleaseContext | | | generateNotes | Generate release notes | GenerateNotesContext | GenerateNotesResult | | addChannels | Add release channels | AddChannelsContext | ReleaseResult | | prepare | Prepare resources for release | PrepareContext | | | publish | Publish packages to registry | PublishContext | ReleaseResult | | success | Handle post-release success | SuccessContext | | | fail | Handle post-release failure | FailContext | |

Official plugins

Configuration

Configuration file

lets-release use cosmiconfig for loading configuration, see cosmiconfig docs for supported files.

Plugin configuration

Plugin execution order

Plugin execution order is first determined by release steps (such as verifyConditions → analyzeCommits). At each step, plugins are executed in the order in which they are defined.

Plugin options

A plugin configuration can be specified by wrapping the name and an options object in an array. Options configured this way will be passed only to that specific plugin.

Options

See Options.