Popularity
1.4
Stable
Activity
0.0
Stable
52
4
9
Monthly Downloads: 0
Programming language: JavaScript
License: MIT License
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.
-
mem
Memoize functions - an optimization technique used to speed up consecutive function calls by caching the result of calls with identical input -
basic-ftp
FTP client for Node.js, supports FTPS over TLS, passive mode over IPv6, async/await, and Typescript. -
schemapack
Create a schema object to encode/decode your JSON in to a compact byte buffer with no overhead. -
nar
node.js application archive - create self-contained binary like executable applications that are ready to ship and run -
Faster than fast, smaller than micro ... nano-memoizer.
Faster than fast, smaller than micro ... a nano speed and size (780 Brotili bytes) memoize for single and multiple argument functions.
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
Promo
www.saashub.com
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of remote-git-tags or a related project?
README
remote-git-tags 
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.