# simple-docker-registry-client

> A simple docker registry client for Node

Latest version **1.1.2** (published 2021-04-12) · MIT license · 0 weekly downloads

## Install

```sh
npm install simple-docker-registry-client
pnpm add simple-docker-registry-client
yarn add simple-docker-registry-client
bun add simple-docker-registry-client
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.2 |
| Published | 2021-04-12 |
| First published | 2016-07-01 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Unpacked size | 11.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Momentum Financial Technology Ltd |
| Maintainers | madjam002, davidgtonge, jon_bride_mh |
| Keywords | docker, registry, client |

## Links

- npm: https://www.npmjs.com/package/simple-docker-registry-client
- Repository: https://github.com/momentumft/simple-docker-registry-client
- Homepage: https://github.com/momentumft/simple-docker-registry-client#readme
- Issues: https://github.com/momentumft/simple-docker-registry-client/issues
- npm.io page: https://npm.io/package/simple-docker-registry-client

## Dependencies (3)

- [node-fetch](https://npm.io/package/node-fetch.md) ^2.6.1
- [babel-runtime](https://npm.io/package/babel-runtime.md) ^6.9.2
- [www-authenticate](https://npm.io/package/www-authenticate.md) ^0.6.2

## Alternatives

- [launchdarkly-js-client-sdk](https://npm.io/package/launchdarkly-js-client-sdk.md) — 2.5M weekly downloads
- [@elastic/elasticsearch](https://npm.io/package/@elastic/elasticsearch.md) — 2.1M weekly downloads
- [@c8y/client](https://npm.io/package/@c8y/client.md) — 15.3K weekly downloads
- [@signaldb/maverickjs](https://npm.io/package/@signaldb/maverickjs.md) — 1.7K weekly downloads
- [@bbc/http-transport-cache](https://npm.io/package/@bbc/http-transport-cache.md) — 1.2K weekly downloads

## Recent versions

- 1.1.2 (latest) — 2021-04-12
- 1.1.1 — 2016-07-12
- 1.1.0 — 2016-07-01
- 1.0.0 — 2016-07-01

## README

simple-docker-registry-client [![Downloads](https://img.shields.io/npm/dm/simple-docker-registry-client.svg)](https://npmjs.com/package/simple-docker-registry-client) [![NPM](https://img.shields.io/npm/v/simple-docker-registry-client.svg)](https://npmjs.com/package/simple-docker-registry-client) [![Github Issues](https://img.shields.io/github/license/momentumft/simple-docker-registry-client.svg)](https://github.com/momentumft/simple-docker-registry-client)
==================

> A simple docker registry client for Node

## Install

```sh
$ npm i --save simple-docker-registry-client
```

## Usage

At the moment this library only handles Basic and Digest authentication for the registry and doesn't wrap any endpoints.
It works with the official Docker Registry, other 3rd party services like Quay.io and any other custom V2 registry.

```javascript
import {registryRequest} from 'simple-docker-registry-client'

registryRequest('some/image/manifests/latest', {
  registry: 'https://registry-1.docker.io',
  credentials: {
    username: 'foo',
    password: 'bar',
  },
})
.then(manifest => {
  ...
})
```

## License

Licensed under the MIT License.

[View the full license here](https://raw.githubusercontent.com/momentumft/simple-docker-registry-client/master/LICENSE).

---
_Source: https://npm.io/package/simple-docker-registry-client · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
