Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ping.js « utils « lib - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f5f7fcc6a62586866f625655176f075bf0eb3519 (plain)
1
2
3
4
5
6
7
// ping the npm registry
// used by the ping and doctor commands
const fetch = require('npm-registry-fetch')
module.exports = async (opts) => {
  const res = await fetch('/-/ping?write=true', opts)
  return res.json().catch(() => ({}))
}