Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sindresorhus/remote-git-tags

Get tags from a remote git repo. Using only JS. No git binary required.
https://github.com/sindresorhus/remote-git-tags

Last synced: about 2 months ago
JSON representation

Get tags from a remote git repo. Using only JS. No git binary required.

Awesome Lists containing this 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](https://medium.com/@jalendport/what-exactly-is-your-shell-path-2f076f02deb4).

## Usage

```js
import remoteGitTags from 'remote-git-tags';

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

## API

### remoteGitTags(repoUrl)

Returns a `Promise>` with the Git tags as keys and their commit SHA as values.

#### repoUrl

Type: `string`

The URL to the Git repo.