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.
- Host: GitHub
- URL: https://github.com/boywithkeyboard-archive/docker-hub-tagger
- Owner: boywithkeyboard-archive
- License: mit
- Created: 2024-03-16T22:23:25.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-23T19:04:45.000Z (almost 2 years ago)
- Last Synced: 2025-02-13T05:30:48.037Z (over 1 year ago)
- Topics: api, deno, docker, esm, javascript, nodejs, typescript
- Language: TypeScript
- Homepage: https://npmjs.com/docker-hub-tagger
- Size: 27.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
- License: license
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')
```