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

lvlup

v1.0.3

Published

A simple version manager solution for packages

Downloads

24

Readme

lvlup 🎩

A CLI tool to help you manage your package versions easily.

1. Getting Started

Step 1: Install the package

First install the package by running:

npm install lvlup

Step 2: Run the init command

When it's your first time using the CLI, you need to run the init command.

At the root of your project, run:

npx lvlup init

You are now ready to use the CLI tool 🙂

Step 3: Add your first experience

Run the following:

npx lvlup add

and follow the prompts.


2. Core Concepts

lvlup

As the name of the package suggests, LvLup is all about leveling up your package. We took the boring concept of package versioning, and added a small form of gamification to it.

Experience

An experience is a contributor's intent to release, stored as data within a file.

With lvlup, you essentially take a package, add some experience to it, and when it's ready - it levels up and bumps to the next level, i.e. the next version number.

Contributors to a repository should be able to declare an intent to release, creating experience file(s), and multiple experiences would then be used to calculate the next level (next version).

lvlup makes sure that an experience is only used once for the purpose of leveling up a package.


3. Your new Workflow

Your team just started working on a to-be-released branch called RELEASE-123 (made-up name). A contributor branched out of RELEASE-123, and checked out to some side-branch. When this contributor is done working on a new feature, a bugfix, or a major change oin their side-branch, they should run:

npx lvlup add

and answer the prompted questions. An experience file is then created, holding the new information as data.

The experience file should be committed, and be included in the PR to be merged into branch RELEASE-123.

The lvlup add command can occur many times either by the same contributor (on the same side-branch branch), or by multiple contributors (on different side branches, also to be merged into RELEASE-123).

When the maintainer wants to release the package, after all desired PRs to RELEASE-123 branch had been merged, they should checkout to the HEAD of RELEASE-123, and run:

npx lvlup bump

followed by the command:

npx lvlup publish

The mentioned commands are explained further down below.


4. Commands

1. init

lvlup init

This command sets up the .lvlup folder at the root of your project. It generates a README.md and a config.json file. The config file has to be found within the .lvlup dir in order for the tool to work. You should run the init command once, when you are setting up lvlup.

2. add

lvlup add [FLAGS]

This command will ask you a series of questions. First, what semver bump type do you require (major | minor | patch), then it will ask for a summary of the changes. At the final step it will show the experience's metadata to be generated, and confirm that you want to add it.

Once confirmed, experience file be written as a Markdown file that contains the summary and YAML front matter which stores the package's name that will be released and the semver bump types for it.

For example, an experience file that minor bumps axios would look like this:

---
"axios": minor
---

A description of the minor changes.

If you want to modify the experience file after it's generated, it's completely fine. You can even write your own experience files yourself if you want, just don't forget to commit them.

Inside your .lvlup/config.json, if you were to set the commit.afterAdd option to true, the add command will create and also commit the experience file.

  • --skip - skips the confirmation step of "are you sure?" at the end.
  • --editor EditorType - Choose an external editor as the means to write the experience's description. EditorType can be one of: vim | vi | nano | code (code is for VsCode)

3. bump

lvlup bump

Levels up your package.
Updates the version of the package according to all experience files found under .lvlup since the last release (WHETHER THEY ARE COMMITTED OR NOT ! So make sure they are committed).

Will also create/append to a CHANGELOG file using the summaries from the experience files.

We recommend making sure changes made from this command are merged back into the main branch before you run publish.

This command will read, and then delete, experience files found on disk, ensuring that they are only used once.

4. publish

lvlup publish

Publishes the package to a dedicated registry. Because this command assumes that last commit is the release commit you should not commit any changes between calling bump and publish. These commands are separate to enable you to check if release commit is accurate.

5. status

lvlup status

The status command provides information about all the experience files that currently exist in a nice tabular view.