node/deps/npm/lib/ping.js
Forrest L Norvell 938cc757bb deps: upgrade to npm 2.13.0
PR-URL: https://github.com/nodejs/io.js/pull/2152
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
2015-07-16 12:26:54 -07:00

21 lines
519 B
JavaScript

var npm = require('./npm.js')
module.exports = ping
ping.usage = 'npm ping\nping registry'
function ping (args, silent, cb) {
if (typeof cb !== 'function') {
cb = silent
silent = false
}
var registry = npm.config.get('registry')
if (!registry) return cb(new Error('no default registry set'))
var auth = npm.config.getCredentialsByURI(registry)
npm.registry.ping(registry, {auth: auth}, function (er, pong) {
if (!silent) console.log(JSON.stringify(pong))
cb(er, er ? null : pong)
})
}