New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

simple-docker-registry-client

Package Overview
Dependencies
Maintainers
3
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simple-docker-registry-client

A simple docker registry client for Node

  • 1.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
3
Created
Source

simple-docker-registry-client Downloads NPM Github Issues

A simple docker registry client for Node

Install

$ 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.

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.

Keywords

FAQs

Package last updated on 12 Apr 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc