ping.js 252 B

1234567
  1. // ping the npm registry
  2. // used by the ping and doctor commands
  3. const fetch = require('npm-registry-fetch')
  4. module.exports = async (flatOptions) => {
  5. const res = await fetch('/-/ping?write=true', flatOptions)
  6. return res.json().catch(() => ({}))
  7. }