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

https://github.com/boywithkeyboard-archive/docker-hub-tagger

A script to retrieve a list of all tags of a Docker Hub repository.
https://github.com/boywithkeyboard-archive/docker-hub-tagger

api deno docker esm javascript nodejs typescript

Last synced: 3 months ago
JSON representation

A script to retrieve a list of all tags of a Docker Hub repository.

Awesome Lists containing this project

README

          

## docker-hub-tagger

### Setup

#### Deno

```ts
import { fetchTags, fetchTagNames } from 'https://esm.sh/docker-hub-tagger'
```

#### Node.js

```bash
npm i docker-hub-tagger
```

```ts
import { fetchTags, fetchTagNames } from 'docker-hub-tagger'
```

### Usage

```ts
const tags = await fetchTags('golang')

const tagNames = await fetchTagNames('node')
```