Socket
Socket
Sign inDemoInstall

git-semver-tags

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

git-semver-tags

Get all git semver tag of your repository in reverse chronological order


Version published
Weekly downloads
2.3M
decreased by-2%
Maintainers
1
Weekly downloads
 
Created

What is git-semver-tags?

The git-semver-tags npm package is a utility that retrieves all semantic version (semver) tags from a Git repository. It is useful for versioning and release management in software projects.

What are git-semver-tags's main functionalities?

Retrieve Semver Tags

This feature allows you to retrieve all semantic version tags from the current Git repository. The code sample demonstrates how to use the git-semver-tags package to get the tags and log them to the console.

const gitSemverTags = require('git-semver-tags');
gitSemverTags((err, tags) => {
  if (err) {
    console.error(err);
  } else {
    console.log(tags);
  }
});

Other packages similar to git-semver-tags

Keywords

FAQs

Package last updated on 31 Dec 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc