UNPKG

docker-registry

Version:
14 lines (11 loc) 302 B
var registry = require('..')('http://localhost:5000'); // hight level, using alias registry.status(function(err, res, body){ if (err) throw err; console.log(body); }); // lowlevel registry.get('v1/images/xxxxxx/json',{}, function (err, res, body) { if (err) throw err; console.log(body); });