mirror of
https://github.com/nodejs/node.git
synced 2025-05-16 07:06:47 +00:00

Closes: https://github.com/nodejs/node/pull/16280 PR-URL: https://github.com/nodejs/node/pull/16509 Fixes: https://github.com/nodejs/node/issues/14161 Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michaël Zasso <targos@protonmail.com>
28 lines
688 B
JavaScript
28 lines
688 B
JavaScript
var npm = require('./npm.js')
|
|
var output = require('./utils/output.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, data, res) {
|
|
if (!silent) {
|
|
if (er) {
|
|
output('Ping error: ' + er)
|
|
} else {
|
|
output('Ping success: ' + JSON.stringify(pong))
|
|
}
|
|
}
|
|
cb(er, er ? null : pong, data, res)
|
|
})
|
|
}
|