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

date-tag

v1.0.2

Published

Create git tags that are date based and versioned for that date. e.g. v2022-01-01.1

Downloads

275

Readme

date-tag

The goal of this package is to create (and push) git tags that are date based. This is sometimes used to push applications that aren't "versioned" in the semver sense, but have date-based deployments.

Note: these tags are annotated tags. See the "Creating Tags" section of the Tagging docs.

Tag Format

The git tag that is created will come in the format of: <prefix><YYYY>-<MM>-<DD>.<version>

  • Prefix
    • Denotes whether it was a full release or a release candidate
  • YYYY
    • 4-digit calendar year
  • MM
    • 2-digit calendar month
  • DD
    • 2-digit calendar day
  • Version
    • Denotes which deployment this is for today.
      • .1 would be the first deployment with that prefix
      • .10 would be the tenth.

Examples

| Example | Command | Prefix | YYYY | MM | DD | Version | | --: | -- | -- | -- | -- | -- | -- | | rc-v2022-01-06.15 | date-tag rc | rc-v | 2022 | 01 | 06 | 15 | | v2022-10-20.2 | date-tag prod | v | 2022 | 10 | 20 | 2 |

Usage

Without installation

The easiest way to use this package is simply to use npx to call it. You do not need to install it first.

$ npx date-tag <rc | prod | push>

With installation

First install it in your project with either:

npm install -D date-tag
yarn install -D date-tag

You can then use the same npx command

npx date-tag <rc | prod | push>

Or you can add it to your package.json

{
  "scripts": {
    "release": "yarn run date-tag"
  }
}

and then you can use

yarn release <rc | prod | push>

Options

There is only one option with multiple possible values: | Option | Purpose | Variations | | ----: | ---- |---- | | rc | Publishes a tag with the prefix rc-ve.g. rc-v2022-01-01.1 | date-tag rcdate-tag betadate-tag demo | | prod | Publishes a tag with the prefix ve.g. v2022-01-01.1 | date-tag proddate-tag fulldate-tag release | | push | Shows you the tags for today and allows you to choose one to push to Github. (See Note below). | date-tag push |

Note on push

The reason the command push exists when git push --tags also exists is that I was personally frustrated when I had OTHER tags that shouldn't be pushed. For example, if I tagged a release yesterday that was never deployed, I don't want to push that one. The equivalent git command to push only the one tag would be:

git push origin "refs/tags/v2022-01-01.1"