mirror of
https://github.com/nodejs/node.git
synced 2025-05-13 10:54:13 +00:00

Contains the following npm releases: - https://github.com/npm/npm/releases/tag/v3.9.6 - https://github.com/npm/npm/releases/tag/v3.10.0 - https://github.com/npm/npm/releases/tag/v3.10.1 - https://github.com/npm/npm/releases/tag/v3.10.2 PR-URL: https://github.com/nodejs/node/pull/7410 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
22 lines
556 B
JavaScript
22 lines
556 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) {
|
|
if (!silent) output(JSON.stringify(pong))
|
|
cb(er, er ? null : pong)
|
|
})
|
|
}
|