mirror of
https://github.com/nodejs/node.git
synced 2025-08-16 14:18:44 +02:00

PR-URL: https://github.com/nodejs/node/pull/56274 Reviewed-By: Jordan Harband <ljharb@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
7 lines
268 B
JavaScript
7 lines
268 B
JavaScript
// ping the npm registry
|
|
// used by the ping and doctor commands
|
|
const npmFetch = require('npm-registry-fetch')
|
|
module.exports = async (flatOptions) => {
|
|
const res = await npmFetch('/-/ping', { ...flatOptions, cache: false })
|
|
return res.json().catch(() => ({}))
|
|
}
|