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

dub-plus

v1.2.0

Published

version counter for package.json and git-tags

Downloads

9

Readme

dub-plus

Version counter for package.json and git tags

Dub take care about your project releases count. You don't have to remember or check at git to know the next version number. You'll never have again a mistaken version tag in your repository. And also, you don't have to open your "package.json" file to update it. All this things are made by dub in a very simple way.

You only have to take care about the first git tag name. Go to the root directory of the project and then type dub. This software mantain the different name conventions you usually use in your projects and you don't have to remember each one if you use different naming for different repos.

What it does?

  • Dub is going to check your last git-tag release and copy the scheme. So if you like to name your versions vX.X.X dub write vX.X.X++ in git. If you like version-X.X.X dub write version-X.X.X, you don't have to change the way you dub things. It doesn't matter, the software take care about it.

  • In the package.json file dub allways write the semServer readable way for you. So it allways work with npm and other json based package managers.

Install

$ npm install -g dub-plus

Usage

Create the first git tag

Build your first tag, this is the layout or scheme for dub

$ git tag v1.0.0

Make a commit

$ git add .
$ git commit -m "My first commit"

Upgrade the git tag

$ dub +

update your version version xx.xx.xx to xx.xx.(xx+1) in the example from 1.0.0 to 1.0.1

$ dub ++

update your version xx.xx.xx to xx.(xx+1).xx in the example from 1.0.0 to 1.1.0

$ dub +++

update your version xx.xx.xx to (xx+1).xx.xx in the example from 1.0.0 to 2.0.0

Downgrade the git tag

$ dub -

delete the most recent version tag.

Then you can run

$ git push --tags

or

$ npm publish

Prerelease

Counter

$ dub + -p alpha.1.0

create a prerelease version named X.X.(X+1)-alpha.1.0

$ dub -p +

upgrade to X.X.X-alpha.1.1

$ dub -p ++

upgrade to X.X.X-alpha.2.1

$ dub -p +++

upgrade to X.X.X-beta.2.1

$ dub + -r

create a tag release with the same version X.X.X of the last prerelease

Support

At this moment the prerelease counter only work with this kind of prereleases tag.

alpha.x.x -->beta.x.x -->rc.x.x -- Uppercase or lowercase.

a.x.x -->b.x.x -->rc.x.x -- Uppercase or lowercase.

x.x.x -->like the version counter -- only numbers.

It'll be updated soon.

Package.json version control

If there is a package.json in the root directory it's updated when you type some upgrade/downgrade command

Aditional options and commands

$ dub + -v

Verbose mode, let you see the git tags you have.

$ dub .

Show the tags of your repository.

$ dub delete <name of tag>

Deletes specified tag.

Version specifications

  • v1.0.0 - first program release, version counter
  • v1.1.0 - prerelease counter support

Dependencies

Standing over shoulders of giants

audrey-two

json-format

chalk

commander

License

GPL-3.0 © Lucas_C/llucbrell