Skip to content

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

License

Notifications You must be signed in to change notification settings

boywithkeyboard-archive/docker-hub-tagger

Repository files navigation

docker-hub-tagger

Setup

Deno

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

Node.js

npm i docker-hub-tagger
import { fetchTags, fetchTagNames } from 'docker-hub-tagger'

Usage

const tags = await fetchTags('golang')

const tagNames = await fetchTagNames('node')