Popularity
1.5
Growing
Activity
0.0
Declining
49
6
12

Monthly Downloads: 0
Programming language: JavaScript
License: MIT License
Tags: Miscellaneous     URL     JavaScript     Js     Git     Repository     Repo     Remote     Ls     Sha     Commit     Tag     Tags     Vanilla    
Latest version: v3.0.0

remote-git-tags alternatives and similar modules

Based on the "Miscellaneous" category.
Alternatively, view remote-git-tags alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of remote-git-tags or a related project?

Add another 'Miscellaneous' Module

README

remote-git-tags Build Status

Get tags from a remote Git repo

Install

$ npm install remote-git-tags

The git binary must be installed and in your PATH.

Usage

const remoteGitTags = require('remote-git-tags');

(async () => {
    console.log(await remoteGitTags('https://github.com/sindresorhus/remote-git-tags'));
    //=> Map {'v1.0.0' => '69e308412e2a5cffa692951f0274091ef23e0e32', โ€ฆ}
})();

API

remoteGitTags(repoUrl)

Returns a Promise<Map<string, string>> with the Git tags as keys and their commit SHA as values.

repoUrl

Type: string

URL to the Git repo.