|
Server : LiteSpeed System : Linux server51.dnsbootclub.com 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64 User : nandedex ( 1060) PHP Version : 8.1.33 Disable Function : NONE Directory : /opt/alt/alt-nodejs9/root/usr/lib/node_modules/npm/lib/ |
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)
})
}