summaryrefslogtreecommitdiff
path: root/deps/npm/lib/ping.js
blob: 23b18bfba079a5827581a5dc6ed1181c00f04a9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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)
  })
}