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 🙏

© 2024 – Pkg Stats / Ryan Hefner

create-release-plan-setup

v2.3.1

Published

Simple npm init bin package to add the perfect release-plan setup

Downloads

445

Readme

create-release-plan-setup

This project is a fork of the excellent work in create-rwjblue-release-it-setup

This is a simple npm init package to add the perfect release-plan setup. Running this init package will automatically do the following:

  • add release-plan dependency
  • add the required .github/workflows files
  • add a CHANGELOG.md
  • add a RELEASE.md
  • update your repository's labels with sensible defaults

Usage

Generate a GitHub personal access token

  1. Obtain a GitHub personal access token.
  2. Make sure the token is available as the GITHUB_AUTH environment variable. For instance:
export GITHUB_AUTH=abc123def456

This is used to add the required Labels to your repo, if you don't want to automatically generate them you can run the next command with --no-label-updates

Run the init script

npm init release-plan-setup@latest

This can be run again later to make sure your setup is on the latest and greatest setup.

Ensure your GitHub Actions token can create PRs

As this workflow automatically creates a PR for you during the release process you need to make sure that your {{GITHUB_TOKEN}} available to your actions has enough permissions to create a PR. In most cases this should be turned on by default but if you find that there is an permissions error when one of the Release Plan Review action is creating a PR you can:

  • open the settings for your repo
  • click Actions > General in the left menu
  • scroll to the Workflow permissions section at the botom of the page
  • make sure that your GITHUB_TOKEN has Read and write permissions and that the Allow GitHub Actions to create and approve pull requests is checked
  • Hit save

Create a NPM_TOKEN

Once you're ready to do your first release with this release-plan setup your GitHub Actions will need to have a npm token to actually do the release. We recommend that you generate a single Granular Access Token that is able to release your package (or all the packages in a your monorepo).

To create an access token you can follow this guide on the npm docs. Once you have your access token you can add it to your repo following these steps:

  • open the settings for your repo
  • click Secrets and variables > Actions in the left menu
  • in the Repository secrets section click the New repository secret button
  • name your token NPM_TOKEN as this is what the release action expects
  • paste the token you generated into the Secret field and hit save

Now you should be free to merge your PR and release your package with release-plan 🎉

License

This project is licensed under the MIT License.