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: 00956d0c1630cef4b20f13ee5b9507556c3c1898 (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 (flatOptions) => {
  const res = await fetch('/-/ping?write=true', flatOptions)
  return res.json().catch(() => ({}))
}